diff --git a/.changes/unreleased/added-20260417-105920.yaml b/.changes/unreleased/added-20260417-105920.yaml new file mode 100644 index 00000000..e5bee1bf --- /dev/null +++ b/.changes/unreleased/added-20260417-105920.yaml @@ -0,0 +1,6 @@ +kind: added +body: Adds support for environment definitions +time: 2026-04-17T10:59:20.288002+03:00 +custom: + Author: v-alexmoraru + AuthorLink: https://github.com/v-alexmoraru diff --git a/src/fabric_cli/commands/fs/impor/fab_fs_import_item.py b/src/fabric_cli/commands/fs/impor/fab_fs_import_item.py index 033c6e18..e25879b5 100644 --- a/src/fabric_cli/commands/fs/impor/fab_fs_import_item.py +++ b/src/fabric_cli/commands/fs/impor/fab_fs_import_item.py @@ -8,7 +8,6 @@ from fabric_cli.client.fab_api_types import ApiResponse from fabric_cli.core import fab_constant, fab_logger from fabric_cli.core.fab_exceptions import FabricCLIError -from fabric_cli.core.fab_types import ItemType from fabric_cli.core.hiearchy.fab_hiearchy import Item from fabric_cli.utils import fab_cmd_import_utils as utils_import from fabric_cli.utils import fab_item_util @@ -53,11 +52,7 @@ def import_single_item(item: Item, args: Namespace) -> None: f"Importing (update) '{_input_path}' → '{item.path}'..." ) - # Environment item type, not supporting definition yet - if item.item_type == ItemType.ENVIRONMENT: - _import_update_environment_item(args, payload) - else: - _import_update_item(args, payload) + _import_update_item(args, payload) utils_ui.print_output_format( args, message=f"'{item.name}' imported") @@ -66,11 +61,7 @@ def import_single_item(item: Item, args: Namespace) -> None: utils_ui.print_grey( f"Importing '{_input_path}' → '{item.path}'...") - # Environment item type, not supporting definition yet - if item.item_type == ItemType.ENVIRONMENT: - response = _import_create_environment_item(item, args, payload) - else: - response = _import_create_item(args, payload) + response = _import_create_item(args, payload) if response.status_code in (200, 201): utils_ui.print_output_format( @@ -83,10 +74,6 @@ def import_single_item(item: Item, args: Namespace) -> None: # Utils -def _import_update_environment_item(args: Namespace, payload: dict) -> None: - utils_import.publish_environment_item(args, payload) - - def _import_update_item(args: Namespace, payload: dict) -> None: definition_payload = json.dumps( { @@ -96,26 +83,6 @@ def _import_update_item(args: Namespace, payload: dict) -> None: item_api.update_item_definition(args, payload=definition_payload) -def _import_create_environment_item( - item: Item, args: Namespace, payload: dict -) -> ApiResponse: - - item_payload: dict = { - "type": str(item.item_type), - "displayName": item.short_name, - "folderId": item.folder_id, - } - item_payload_str = json.dumps(item_payload) - - # Create the item - response = item_api.create_item(args, payload=item_payload_str) - data = json.loads(response.text) - args.id = data["id"] - - utils_import.publish_environment_item(args, payload) - return response - - def _import_create_item(args: Namespace, payload: dict) -> ApiResponse: _payload = json.dumps(payload) return item_api.create_item(args, payload=_payload) diff --git a/src/fabric_cli/core/fab_config/command_support.yaml b/src/fabric_cli/core/fab_config/command_support.yaml index 503d5bdd..2e9fe91a 100644 --- a/src/fabric_cli/core/fab_config/command_support.yaml +++ b/src/fabric_cli/core/fab_config/command_support.yaml @@ -174,6 +174,7 @@ commands: - sql_database - user_data_function - map + - environment cp: supported_elements: - workspace @@ -205,6 +206,7 @@ commands: - sql_database - user_data_function - map + - environment ln: supported_elements: - onelake @@ -263,6 +265,7 @@ commands: - graph_query_set - map - lakehouse + - environment import: supported_items: - report @@ -290,6 +293,7 @@ commands: - user_data_function - map - lakehouse + - environment unsupported_items: - graph_query_set get: diff --git a/src/fabric_cli/core/fab_types.py b/src/fabric_cli/core/fab_types.py index 948b6ba0..51989e30 100644 --- a/src/fabric_cli/core/fab_types.py +++ b/src/fabric_cli/core/fab_types.py @@ -605,4 +605,5 @@ class MirroredDatabaseFolders(Enum): ItemType.GRAPH_QUERY_SET: {"default": ""}, ItemType.VARIABLE_LIBRARY: {"default": ""}, ItemType.MAP: {"default": ""}, + ItemType.ENVIRONMENT: {"default": ""}, } diff --git a/src/fabric_cli/utils/fab_cmd_import_utils.py b/src/fabric_cli/utils/fab_cmd_import_utils.py index e9f68cdf..13076260 100644 --- a/src/fabric_cli/utils/fab_cmd_import_utils.py +++ b/src/fabric_cli/utils/fab_cmd_import_utils.py @@ -4,34 +4,23 @@ import base64 import json import os -import time -from argparse import Namespace from typing import Any, Optional -import yaml - -from fabric_cli.client import fab_api_item as item_api from fabric_cli.core import fab_constant from fabric_cli.core.fab_exceptions import FabricCLIError -from fabric_cli.core.fab_types import ItemType from fabric_cli.core.hiearchy.fab_hiearchy import Item -from fabric_cli.utils import fab_ui as utils_ui def get_payload_for_item_type( path: str, item: Item, input_format: Optional[str] = None ) -> dict: - # Environment does not support updateDefinition yet, custom payload / dev - if item.item_type == ItemType.ENVIRONMENT: - return _build_environment_payload(path) - else: - definition = _build_definition(path, input_format) - return { - "type": str(item.item_type), - "folderId": item.folder_id, - "displayName": item.short_name, - "definition": definition, - } + definition = _build_definition(path, input_format) + return { + "type": str(item.item_type), + "folderId": item.folder_id, + "displayName": item.short_name, + "definition": definition, + } def _build_definition(input_path: Any, input_format: Optional[str] = None) -> dict: @@ -39,8 +28,10 @@ def _build_definition(input_path: Any, input_format: Optional[str] = None) -> di parts = [] # Recursively traverses the directory and builds the payload structure + # Sort dirs and files to ensure deterministic ordering across platforms for root, dirs, files in os.walk(directory): - for file in files: + dirs.sort() + for file in sorted(files): # Get full path and relative path full_path = os.path.join(root, file) relative_path = os.path.relpath(full_path, directory) @@ -81,218 +72,3 @@ def _build_definition(input_path: Any, input_format: Optional[str] = None) -> di def _encode_file_to_base64(file_path: str) -> str: with open(file_path, "rb") as file: return base64.b64encode(file.read()).decode("utf-8") - - -# Environments - - -def publish_environment_item(args: Namespace, payload: dict) -> None: - # Check for ongoing publish - _check_environment_publish_state(args, True) - - # Update compute settings - _update_compute_settings(args, payload) - - # Add libraries to environment, overwriting anything with the same name and return the list of libraries - _add_libraries(args, payload) - - # Remove libraries from live environment - _remove_libraries(args, payload) - - # Publish - item_api.environment_publish(args) - - # Wait for ongoing publish to complete - _check_environment_publish_state(args) - - utils_ui.print_info(f"Published") - - -def _check_environment_publish_state( - args: Namespace, initial_check: bool = False -) -> None: - publishing = True - iteration = 1 - - while publishing: - args.item_uri = "environments" - response = item_api.get_item(args, item_uri=True) - data = response.json() - - current_state = ( - data.get("properties", {}) - .get("publishDetails", {}) - .get("state", "Unknown") - .lower() - ) - - if initial_check: - - prepend_message = "Existing Environment publish is in progess" - pass_values = ["success", "failed", "cancelled"] - fail_values = [] - - else: - prepend_message = "Operation in progress" - pass_values = ["success"] - fail_values = ["failed", "cancelled"] - - if current_state in pass_values: - publishing = False - elif current_state in fail_values: - msg = f"Publish {current_state} for Libraries" - raise Exception(msg) - else: - _handle_retry( - attempt=iteration, - base_delay=5, - max_retries=20, - response_retry_after=120, - prepend_message=prepend_message, - ) - iteration += 1 - - -def _build_environment_payload(input_path: Any) -> dict: - directory = input_path - - parts: dict[Any, Any] = {} - for root, dirs, files in os.walk(directory): - for file in files: - # Get full path and relative path - full_path = os.path.join(root, file) - - # Spark compute settings - if "Setting" in full_path: - with open(full_path, "r") as file: - yaml_body = yaml.safe_load(file) - parts["sparkCompute"] = _convert_environment_compute_to_camel(yaml_body) - - # Spark libraries - elif "Libraries" in full_path: - parts["libraries"] = parts.get("libraries", []) - # Append instead of overwrite - parts["libraries"].append(full_path) - - return {"parts": parts} - - -def _convert_environment_compute_to_camel(input_dict: dict) -> dict: - new_input_dict = {} - - for key, value in input_dict.items(): - if key == "spark_conf": - new_key = "sparkProperties" - else: - # Convert the key to camelCase - key_components = key.split("_") - # Capitalize the first letter of each component except the first one - new_key = key_components[0] + "".join(x.title() for x in key_components[1:]) - - # Recursively update dictionary values if they are dictionaries - if isinstance(value, dict): - value = _convert_environment_compute_to_camel(value) - - new_input_dict[new_key] = value - - return new_input_dict - - -def _update_compute_settings(args: Namespace, payload: dict) -> None: - if "sparkCompute" in payload["parts"]: - spark_compute = payload["parts"]["sparkCompute"] - _spark_compute_payload = json.dumps(spark_compute) - - args.ext_uri = "/staging/sparkcompute" - args.item_uri = "environments" - - response = item_api.update_item( - args, payload=_spark_compute_payload, item_uri=True, ext_uri=True - ) - - if response.status_code == 200: - utils_ui.print_info("Updated Spark Settings") - - -def _add_libraries(args: Namespace, payload: dict) -> None: - if "libraries" in payload["parts"]: - # Extract the list of libraries - library_paths = payload["parts"]["libraries"] - - for file_path in library_paths: - file_name = os.path.basename(file_path) - - # Open the file in binary mode for reading - with open(file_path, "rb") as file: - library_file = {"file": (file_name, file)} - - # Upload libraries to the environment - response = item_api.environment_upload_staging_library( - args, library_file - ) - - if response.status_code == 200: - utils_ui.print_info(f"Updated Library '{file_name}'") - - -def _remove_libraries(args: Namespace, payload: dict) -> None: - args.ext_uri = "/libraries" - args.item_uri = "environments" - - try: - response = item_api.get_item(args, item_uri=True, ext_uri=True) - if response.status_code == 200: - response_json = response.json() # Convert to dictionary - - repo_library_files = tuple( - os.path.basename(file) for file in payload["parts"]["libraries"] - ) - - if ( - "environmentYml" in response_json - and response_json["environmentYml"] # Not None or '' - and "environment.yml" not in repo_library_files - ): - _remove_library(args, "environment.yml") - - custom_libraries = response_json.get("customLibraries", {}) - if isinstance(custom_libraries, dict): - for files in custom_libraries.values(): - if isinstance(files, list): - for file in files: - if file not in repo_library_files: - _remove_library(args, file) - - except Exception as e: - pass - - -def _remove_library(args: Namespace, file_name: str) -> None: - item_api.environment_delete_library_staging(args, file_name) - utils_ui.print_info(f"Removed {file_name}") - - -def _handle_retry( - attempt: int, - base_delay: float, - max_retries: int, - response_retry_after: float = 60, - prepend_message: str = "", -) -> None: - if attempt < max_retries: - retry_after = float(response_retry_after) - base_delay = float(base_delay) - delay = min(retry_after, base_delay * (2**attempt)) - - # Modify output for proper plurality and formatting - delay_str = f"{delay:.0f}" if delay.is_integer() else f"{delay:.2f}" - second_str = "second" if delay == 1 else "seconds" - prepend_message += " " if prepend_message else "" - - utils_ui.print_progress( - f"{prepend_message}Checking again in {delay_str} {second_str} (Attempt {attempt}/{max_retries})..." - ) - time.sleep(delay) - else: - msg = f"Maximum retry attempts ({max_retries}) exceeded" - raise Exception(msg) diff --git a/tests/test_commands/conftest.py b/tests/test_commands/conftest.py index c7d0e80d..60fc1f20 100644 --- a/tests/test_commands/conftest.py +++ b/tests/test_commands/conftest.py @@ -136,6 +136,7 @@ ItemType.DIGITAL_TWIN_BUILDER, ItemType.DIGITAL_TWIN_BUILDER_FLOW, ItemType.LAKEHOUSE, + ItemType.ENVIRONMENT, ], ) @@ -212,6 +213,7 @@ ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.MAP, + ItemType.ENVIRONMENT, ], ) @@ -246,6 +248,7 @@ ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.MAP, + ItemType.ENVIRONMENT, ], ) @@ -282,7 +285,7 @@ (ItemType.NOTEBOOK, True), (ItemType.DATA_PIPELINE, True), (ItemType.LAKEHOUSE, True), - (ItemType.ENVIRONMENT, False), + (ItemType.ENVIRONMENT, True), (ItemType.WAREHOUSE, False), (ItemType.COSMOS_DB_DATABASE, True), (ItemType.USER_DATA_FUNCTION, True), @@ -293,7 +296,9 @@ get_virtual_workspace_success_params = pytest.mark.parametrize( "virtual_workspace_type,expected_properties", [ - (VirtualWorkspaceType.DOMAIN, ["contributorsScope", "domainWorkspaces"]), + ( + VirtualWorkspaceType.DOMAIN, + ["contributorsScope", "domainWorkspaces"]), ( VirtualWorkspaceType.GATEWAY, ["type", "capacityId", "numberOfMemberGateways"], @@ -412,6 +417,7 @@ ItemType.DIGITAL_TWIN_BUILDER_FLOW, ItemType.MAP, ItemType.LAKEHOUSE, + ItemType.ENVIRONMENT, ], ) @@ -443,6 +449,7 @@ (ItemType.DIGITAL_TWIN_BUILDER, 2), (ItemType.DIGITAL_TWIN_BUILDER_FLOW, 2), (ItemType.LAKEHOUSE, 4), + (ItemType.ENVIRONMENT, 2), ], ) @@ -484,6 +491,7 @@ ItemType.SPARK_JOB_DEFINITION, ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, + ItemType.ENVIRONMENT, # ItemType.DIGITAL_TWIN_BUILDER, # ItemType.DIGITAL_TWIN_BUILDER_FLOW, ], @@ -501,6 +509,7 @@ ItemType.SPARK_JOB_DEFINITION, ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, + ItemType.ENVIRONMENT, ], ) 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 30cb4c88..8e8044b3 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mv; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:10:53 GMT + - Tue, 02 Jun 2026 08:24:53 GMT Pragma: - no-cache RequestId: - - d29b8156-8378-488f-95ac-db85d30201c4 + - 9f4d4def-51e4-4133-bcb1-855d9fe894f6 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mv; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:10:54 GMT + - Tue, 02 Jun 2026 08:24:54 GMT Pragma: - no-cache RequestId: - - c8fa6768-f93f-448b-9ab8-706395fb8bfb + - 1770d246-6340-4a41-8b9b-15ed65f74327 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mv; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '467' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:11:01 GMT + - Tue, 02 Jun 2026 08:24:59 GMT Pragma: - no-cache RequestId: - - 0518a4ec-9de9-4d78-8498-6f7d2e65e01a + - 98bf2a6b-4fcb-4f05-98ed-f01e942a8c50 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mv; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "4a5d36db-b7c1-4b14-a4d7-57200d02ddd0", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "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: - - Wed, 13 May 2026 10:11:10 GMT + - Tue, 02 Jun 2026 08:25:05 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/4a5d36db-b7c1-4b14-a4d7-57200d02ddd0 + - https://api.fabric.microsoft.com/v1/workspaces/17269422-3ac5-4e8d-bdf2-e2f9c37e009b Pragma: - no-cache RequestId: - - 87af2bf4-897a-4ae1-9622-f13de0e7741a + - cfa1b40e-f082-4c99-92b7-a0f64798d55c 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.6.1 (cp; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (cp; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "4a5d36db-b7c1-4b14-a4d7-57200d02ddd0", + "My workspace", "description": "", "type": "Personal"}, {"id": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2524' + - '2959' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:06 GMT + - Tue, 02 Jun 2026 08:45:54 GMT Pragma: - no-cache RequestId: - - 07fcd38f-28af-4ed2-be7c-fcb26e470e1b + - 77256167-43f4-4409-a12d-c514cb41f905 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.6.1 (cp; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (cp; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/4a5d36db-b7c1-4b14-a4d7-57200d02ddd0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/17269422-3ac5-4e8d-bdf2-e2f9c37e009b/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:07 GMT + - Tue, 02 Jun 2026 08:45:56 GMT Pragma: - no-cache RequestId: - - c6494dc3-5361-4cc6-ba7d-d16f463280d4 + - 8d8087f2-f08b-43e2-a7bf-960e0ad70b1d 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.6.1 (cp; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (cp; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/4a5d36db-b7c1-4b14-a4d7-57200d02ddd0 + uri: https://api.fabric.microsoft.com/v1/workspaces/17269422-3ac5-4e8d-bdf2-e2f9c37e009b response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 10:14:08 GMT + - Tue, 02 Jun 2026 08:45:56 GMT Pragma: - no-cache RequestId: - - 8a869623-98da-42fb-a6b7-8ad36b31a252 + - 03358a9c-fcc0-4871-868f-7f731891ca3d 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[Environment].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Environment].yaml new file mode 100644 index 00000000..5663aa10 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Environment].yaml @@ -0,0 +1,3864 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:06 GMT + Pragma: + - no-cache + RequestId: + - 46202bc1-c355-4915-b538-cefa7280d535 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:07 GMT + Pragma: + - no-cache + RequestId: + - b05f6f28-e718-414b-9d17-a311f1c142a4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + 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: + - '462' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:12 GMT + Pragma: + - no-cache + RequestId: + - 2d8e278b-7227-421d-9336-9302d05bcf41 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "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: + - '155' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:19 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad + Pragma: + - no-cache + RequestId: + - 9a9efcca-b2fe-47ca-8f12-30d2aecb89a3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "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: + - '2998' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:20 GMT + Pragma: + - no-cache + RequestId: + - 1646e0db-b94d-471f-9976-cdc707d6ecc1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "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: + - '2998' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:21 GMT + Pragma: + - no-cache + RequestId: + - f480c401-64bf-4091-8b7c-32a071bd089d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + 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: + - '462' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:26 GMT + Pragma: + - no-cache + RequestId: + - 7d225704-c8e6-4a33-8895-08450a6221b7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '155' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:35 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9 + Pragma: + - no-cache + RequestId: + - b0814247-3f7e-4a03-b65a-d52be14f3d04 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:35 GMT + Pragma: + - no-cache + RequestId: + - a0ec6e1e-a041-4801-91a2-b92bf2d8d193 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/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, 02 Jun 2026 08:25:37 GMT + Pragma: + - no-cache + RequestId: + - b134395b-dbb1-4e94-919e-869db838f8c4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/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, 02 Jun 2026 08:25:37 GMT + Pragma: + - no-cache + RequestId: + - 273c449d-412e-40f8-8e32-d9d7bb3647ee + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000003"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders + response: + body: + string: '{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": "fabcli000003", + "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}' + 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, 02 Jun 2026 08:25:39 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders/0a91f909-3bca-457f-99bc-4ea2829518ca + Pragma: + - no-cache + RequestId: + - b445ac4c-3d7e-4502-b111-3ce68898339e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:39 GMT + Pragma: + - no-cache + RequestId: + - 4a29f46c-2b33-43e5-b51c-ad3797306170 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:25:40 GMT + Pragma: + - no-cache + RequestId: + - 9024be2c-6225-4fba-8cce-2ae7852fadd8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/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, 02 Jun 2026 08:25:41 GMT + Pragma: + - no-cache + RequestId: + - 8b6c3d76-a138-46b7-a5d3-eb451b19cdb9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/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, 02 Jun 2026 08:25:41 GMT + Pragma: + - no-cache + RequestId: + - 5aa8cf6b-43c7-40fd-880c-2887d0748af1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000004", "type": "Environment", "folderId": "0a91f909-3bca-457f-99bc-4ea2829518ca"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/environments + response: + body: + string: '{"id": "c0b3758b-3e6a-404a-9f81-23070b7c60fd", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", + "folderId": "0a91f909-3bca-457f-99bc-4ea2829518ca"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '188' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:44 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 15c7885a-be0c-41f7-8308-c8d108d945a2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:45 GMT + Pragma: + - no-cache + RequestId: + - 72c4f435-6837-4ecb-a32a-e94c940abe2a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:25:45 GMT + Pragma: + - no-cache + RequestId: + - cd6ec00f-a100-426b-8080-fdea87ea9851 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:46 GMT + Pragma: + - no-cache + RequestId: + - 46b27c11-38a4-4b9d-a09a-794e0486cc97 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:48 GMT + Pragma: + - no-cache + RequestId: + - 60c7063a-75a5-48cc-a489-95e04363cac8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/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, 02 Jun 2026 08:25:48 GMT + Pragma: + - no-cache + RequestId: + - 8764809d-b190-4dfd-b9ac-46f5f2b51601 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/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, 02 Jun 2026 08:25:49 GMT + Pragma: + - no-cache + RequestId: + - 4816404c-63f1-4028-9cbc-7b6f5a6d764f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000003"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders + response: + body: + string: '{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": "fabcli000003", + "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}' + 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, 02 Jun 2026 08:25:50 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders/b3b9aeaf-551e-469b-9bca-fb912d97511b + Pragma: + - no-cache + RequestId: + - 1ef353a7-8a75-44f0-a877-19e75db6688b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/items + response: + body: + string: '{"value": [{"id": "c0b3758b-3e6a-404a-9f81-23070b7c60fd", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", + "folderId": "0a91f909-3bca-457f-99bc-4ea2829518ca"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '202' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:51 GMT + Pragma: + - no-cache + RequestId: + - 7f1d4f5b-7c08-4fef-b532-e5781b2842d2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:25:52 GMT + Pragma: + - no-cache + RequestId: + - 720e40ed-a265-4f4f-b367-0178fa29da86 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:25:53 GMT + Pragma: + - no-cache + RequestId: + - 9faa7feb-19eb-408b-89cb-ecc04030c3a9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/items + response: + body: + string: '{"value": [{"id": "c0b3758b-3e6a-404a-9f81-23070b7c60fd", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", + "folderId": "0a91f909-3bca-457f-99bc-4ea2829518ca"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '202' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:54 GMT + Pragma: + - no-cache + RequestId: + - 984f27db-226d-4c8a-8244-06df3a567a9e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:25:54 GMT + Pragma: + - no-cache + RequestId: + - a15e674e-375a-4f68-8c59-16b7029b5fa1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:25:55 GMT + Pragma: + - no-cache + RequestId: + - afba271f-2b89-4e8e-83d1-8bbfef7143fc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:56 GMT + Pragma: + - no-cache + RequestId: + - edb7d305-b27c-4d57-88c1-484a1a767915 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:25:56 GMT + Pragma: + - no-cache + RequestId: + - d80b6e83-e6bd-4d56-bac7-ee7cfa48b116 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/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, 02 Jun 2026 08:25:57 GMT + Pragma: + - no-cache + RequestId: + - b6342f7d-0129-4ab6-b299-13a3744f94fb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/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, 02 Jun 2026 08:25:58 GMT + Pragma: + - no-cache + RequestId: + - 3df18524-83b1-4336-9548-45450f999ae7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/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, 02 Jun 2026 08:25:59 GMT + Pragma: + - no-cache + RequestId: + - 6f50f148-535d-40e6-8292-f46346349384 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/items/c0b3758b-3e6a-404a-9f81-23070b7c60fd + response: + body: + string: '{"id": "c0b3758b-3e6a-404a-9f81-23070b7c60fd", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", + "folderId": "0a91f909-3bca-457f-99bc-4ea2829518ca"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '188' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:25:59 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 2f8f6243-2b22-4864-9e9c-a10aa41080c3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/items/c0b3758b-3e6a-404a-9f81-23070b7c60fd/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, 02 Jun 2026 08:26:01 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67d0e688-3e78-4487-84e8-996af181b292 + Pragma: + - no-cache + RequestId: + - b5958161-3008-4201-bd22-cad27c55a3bd + 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: + - 67d0e688-3e78-4487-84e8-996af181b292 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67d0e688-3e78-4487-84e8-996af181b292 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:26:01.1270794", + "lastUpdatedTimeUtc": "2026-06-02T08:26:01.3026193", "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, 02 Jun 2026 08:26:21 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67d0e688-3e78-4487-84e8-996af181b292/result + Pragma: + - no-cache + RequestId: + - a41774ee-6b82-4a0d-b93c-c2ce1a9c7178 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 67d0e688-3e78-4487-84e8-996af181b292 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67d0e688-3e78-4487-84e8-996af181b292/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 08:26:22 GMT + Pragma: + - no-cache + RequestId: + - 52da3f05-09e2-4a9a-a517-90447c4d99db + 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": "Environment", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "Setting/Sparkcompute.yml", "payload": "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "b3b9aeaf-551e-469b-9bca-fb912d97511b"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1002' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/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, 02 Jun 2026 08:26:24 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7849ecd6-02d9-444e-bc41-076341293f74 + Pragma: + - no-cache + RequestId: + - e0a26954-c0f0-4071-9d63-9203b5df9270 + 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: + - 7849ecd6-02d9-444e-bc41-076341293f74 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7849ecd6-02d9-444e-bc41-076341293f74 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:26:23.646617", + "lastUpdatedTimeUtc": "2026-06-02T08:26:27.0374731", "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, 02 Jun 2026 08:26:44 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7849ecd6-02d9-444e-bc41-076341293f74/result + Pragma: + - no-cache + RequestId: + - df2c8a5f-3ea6-4505-9c30-bd98e5d16907 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 7849ecd6-02d9-444e-bc41-076341293f74 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7849ecd6-02d9-444e-bc41-076341293f74/result + response: + body: + string: '{"id": "ec16ec81-a17c-48a7-a944-947c5d01f045", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", + "folderId": "b3b9aeaf-551e-469b-9bca-fb912d97511b"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 02 Jun 2026 08:26:45 GMT + Pragma: + - no-cache + RequestId: + - 3a89f6fc-3c2c-4603-8cc9-5d3837354ddb + 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.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/items + response: + body: + string: '{"value": [{"id": "c0b3758b-3e6a-404a-9f81-23070b7c60fd", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", + "folderId": "0a91f909-3bca-457f-99bc-4ea2829518ca"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '202' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:26:46 GMT + Pragma: + - no-cache + RequestId: + - 7079e378-f0e5-4e1a-9d87-82f0dd73861d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:26:48 GMT + Pragma: + - no-cache + RequestId: + - a71d2266-2c9e-480c-8fdf-0f5bbfcea65f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:26:48 GMT + Pragma: + - no-cache + RequestId: + - c9f5827f-af37-4eca-a88e-658dc24fd3f1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:26:49 GMT + Pragma: + - no-cache + RequestId: + - 7d2a944e-cedc-4ef6-beb7-2174dfbfc441 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/items + response: + body: + string: '{"value": [{"id": "ec16ec81-a17c-48a7-a944-947c5d01f045", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", + "folderId": "b3b9aeaf-551e-469b-9bca-fb912d97511b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '201' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:26:50 GMT + Pragma: + - no-cache + RequestId: + - a93edf00-bcf1-4bf1-a344-53009afe05cb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:26:51 GMT + Pragma: + - no-cache + RequestId: + - 5fbd0d73-3756-4a5a-ae19-30efecdb0527 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:26:52 GMT + Pragma: + - no-cache + RequestId: + - f3a7f691-f99e-4477-b82f-3c6e34566470 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:26:52 GMT + Pragma: + - no-cache + RequestId: + - 87644ae8-70f6-4c0a-bf75-81aa71773665 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:26:54 GMT + Pragma: + - no-cache + RequestId: + - 51a3a05a-cf05-400d-a0e1-7a194476f633 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/items + response: + body: + string: '{"value": [{"id": "ec16ec81-a17c-48a7-a944-947c5d01f045", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", + "folderId": "b3b9aeaf-551e-469b-9bca-fb912d97511b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '201' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:26:55 GMT + Pragma: + - no-cache + RequestId: + - 5555b1be-1523-4772-a9a3-710ae456653f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:26:55 GMT + Pragma: + - no-cache + RequestId: + - edcb0cca-be99-4c9f-90bb-1bdf0a9fa36a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:26:57 GMT + Pragma: + - no-cache + RequestId: + - 48f72a60-a0bd-4d0c-9718-079d752ef2d6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:26:57 GMT + Pragma: + - no-cache + RequestId: + - dcdd4e1e-d86b-44a0-af8a-3618937060d4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:26:58 GMT + Pragma: + - no-cache + RequestId: + - 6c77fde3-2bcc-4f7f-9450-4549d29d5971 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/items + response: + body: + string: '{"value": [{"id": "ec16ec81-a17c-48a7-a944-947c5d01f045", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", + "folderId": "b3b9aeaf-551e-469b-9bca-fb912d97511b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '201' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:26:58 GMT + Pragma: + - no-cache + RequestId: + - 5738d6b3-6cce-440e-964f-663067f22885 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:27:00 GMT + Pragma: + - no-cache + RequestId: + - d6d17147-30ef-4cd6-b8b7-e3a301844aaf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/items/ec16ec81-a17c-48a7-a944-947c5d01f045 + 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, 02 Jun 2026 08:27:01 GMT + Pragma: + - no-cache + RequestId: + - 0315ebcf-0a99-40f9-a474-888fd133a415 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:01 GMT + Pragma: + - no-cache + RequestId: + - 26ba89fa-3192-47ed-a703-937bd7de0304 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders?recursive=True + response: + body: + string: '{"value": [{"id": "b3b9aeaf-551e-469b-9bca-fb912d97511b", "displayName": + "fabcli000003", "workspaceId": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9"}]}' + 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, 02 Jun 2026 08:27:02 GMT + Pragma: + - no-cache + RequestId: + - 4ffab16a-799b-4571-aa4c-0938065437af + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/folders/b3b9aeaf-551e-469b-9bca-fb912d97511b + 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, 02 Jun 2026 08:27:03 GMT + Pragma: + - no-cache + RequestId: + - b761d7df-7a47-410d-9e25-870d3f1ef0ea + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:04 GMT + Pragma: + - no-cache + RequestId: + - 5422fddf-2eea-4e20-ad83-6aa433adf616 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:27:05 GMT + Pragma: + - no-cache + RequestId: + - 42349ca6-3399-4167-adba-6f8007eea45b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/items + response: + body: + string: '{"value": [{"id": "c0b3758b-3e6a-404a-9f81-23070b7c60fd", "type": "Environment", + "displayName": "fabcli000004", "description": "", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", + "folderId": "0a91f909-3bca-457f-99bc-4ea2829518ca"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '202' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:05 GMT + Pragma: + - no-cache + RequestId: + - 611152c5-585c-4b4e-8ec1-5788315dfe8c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:27:07 GMT + Pragma: + - no-cache + RequestId: + - 7f5efcb4-9221-421a-867f-0a569b52e8bc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/items/c0b3758b-3e6a-404a-9f81-23070b7c60fd + 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, 02 Jun 2026 08:27:07 GMT + Pragma: + - no-cache + RequestId: + - e8ae8911-40b6-48c5-bad4-2c8a721a1298 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:08 GMT + Pragma: + - no-cache + RequestId: + - 2bc2b005-b664-4b31-952d-53bb58992e49 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders?recursive=True + response: + body: + string: '{"value": [{"id": "0a91f909-3bca-457f-99bc-4ea2829518ca", "displayName": + "fabcli000003", "workspaceId": "e5889ec9-e73f-4b05-adb8-a1f504a2edad"}]}' + 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, 02 Jun 2026 08:27:08 GMT + Pragma: + - no-cache + RequestId: + - 8b6a86d1-9db7-4c9f-91f2-d18aa20c1f44 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/folders/0a91f909-3bca-457f-99bc-4ea2829518ca + 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, 02 Jun 2026 08:27:09 GMT + Pragma: + - no-cache + RequestId: + - f49f53e9-8cc1-4822-adfc-7072fa218aa1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e5889ec9-e73f-4b05-adb8-a1f504a2edad", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:10 GMT + Pragma: + - no-cache + RequestId: + - 45013855-685a-47b6-b1be-c09f518596be + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad/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, 02 Jun 2026 08:27:11 GMT + Pragma: + - no-cache + RequestId: + - 9c4b8b1c-6379-465e-ae17-cd72750e78cd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/e5889ec9-e73f-4b05-adb8-a1f504a2edad + 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, 02 Jun 2026 08:27:12 GMT + Pragma: + - no-cache + RequestId: + - af1cb8fe-11b4-4230-90bb-97d641648466 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b2bf67f7-48fa-43c7-8eb0-2ff107516eb9", "displayName": "fabcli000002", + "description": "", "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: + - '2995' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:12 GMT + Pragma: + - no-cache + RequestId: + - cd2169cc-e59f-496b-b0b4-4cb032047f06 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9/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, 02 Jun 2026 08:27:12 GMT + Pragma: + - no-cache + RequestId: + - c3325642-6f11-43bc-84f1-8cfc726aca75 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/b2bf67f7-48fa-43c7-8eb0-2ff107516eb9 + 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, 02 Jun 2026 08:27:13 GMT + Pragma: + - no-cache + RequestId: + - b911ba39-8c77-453d-bb00-b8f3af619918 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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[Environment].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Environment].yaml new file mode 100644 index 00000000..c15ba525 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Environment].yaml @@ -0,0 +1,1950 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:14 GMT + Pragma: + - no-cache + RequestId: + - 29c54384-cff3-4cd7-9034-33df1b890a44 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:15 GMT + Pragma: + - no-cache + RequestId: + - 8772aa9b-dd94-4af3-b0a9-689b24b7a97b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + 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: + - '467' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:20 GMT + Pragma: + - no-cache + RequestId: + - 136cdb6e-35d3-4015-b270-c5637f94d468 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "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: + - '156' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:28 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398 + Pragma: + - no-cache + RequestId: + - 6d0fda2e-2d07-4600-bea1-d4d4af31296c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "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: + - '3000' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:29 GMT + Pragma: + - no-cache + RequestId: + - fab8470b-8a00-4723-8e94-cddfbe6b9dad + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "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: + - '3000' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:27:29 GMT + Pragma: + - no-cache + RequestId: + - 80968d6c-434c-4acc-a2b9-8efa7c68149a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + 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: + - '467' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:28:42 GMT + Pragma: + - no-cache + RequestId: + - cf8c536c-84f3-4d68-b03b-ffc0fe6f321c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '154' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:28:50 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/8977a9e5-712c-4b8c-b7f8-2a45f0cd1394 + Pragma: + - no-cache + RequestId: + - bcc86f03-a852-43f1-b87b-6220ccfa6b11 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:28:51 GMT + Pragma: + - no-cache + RequestId: + - b747396d-4ca8-4d7a-a2a0-b3c6246e357c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/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, 02 Jun 2026 08:28:52 GMT + Pragma: + - no-cache + RequestId: + - 78708788-f8e0-4c98-8967-6c87dad991e3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/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, 02 Jun 2026 08:28:53 GMT + Pragma: + - no-cache + RequestId: + - 3b9efb02-ffbd-4f11-b7fc-79e245cd2f20 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000003", "type": "Environment", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/environments + response: + body: + string: '{"id": "8141e6ac-701b-4afa-84df-2d0d23b5c129", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "57fa0d82-34ac-49c1-b115-b0455b351398"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:28:56 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 9fbbf478-ce21-4c7b-93ae-26095e57be09 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:28:56 GMT + Pragma: + - no-cache + RequestId: + - 311ea6ea-655b-4d9c-87ae-0c713fac62ef + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/items + response: + body: + string: '{"value": [{"id": "8141e6ac-701b-4afa-84df-2d0d23b5c129", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "57fa0d82-34ac-49c1-b115-b0455b351398"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:28:57 GMT + Pragma: + - no-cache + RequestId: + - 7fc6065b-acd9-4b65-a6e8-1a416f58a3f9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:28:58 GMT + Pragma: + - no-cache + RequestId: + - 04fc3033-d54d-495b-91f9-ac24d9592395 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/8977a9e5-712c-4b8c-b7f8-2a45f0cd1394/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, 02 Jun 2026 08:28:59 GMT + Pragma: + - no-cache + RequestId: + - 891d85f9-c610-49ea-b002-20644a8f9828 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/8977a9e5-712c-4b8c-b7f8-2a45f0cd1394/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, 02 Jun 2026 08:29:00 GMT + Pragma: + - no-cache + RequestId: + - 270aa4f7-6501-4006-a860-a60590c839e4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/8977a9e5-712c-4b8c-b7f8-2a45f0cd1394/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, 02 Jun 2026 08:29:01 GMT + Pragma: + - no-cache + RequestId: + - cfa639f7-5ee6-4f2a-9e52-74285a945c69 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/items/8141e6ac-701b-4afa-84df-2d0d23b5c129 + response: + body: + string: '{"id": "8141e6ac-701b-4afa-84df-2d0d23b5c129", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "57fa0d82-34ac-49c1-b115-b0455b351398"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '159' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:29:02 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 98f22ef9-1ee1-4e37-8d75-fb25dada5266 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/items/8141e6ac-701b-4afa-84df-2d0d23b5c129/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, 02 Jun 2026 08:29:03 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/88e736a4-e00b-40ca-b475-411530670a93 + Pragma: + - no-cache + RequestId: + - aef1fcae-6917-417c-b915-eab488535018 + 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: + - 88e736a4-e00b-40ca-b475-411530670a93 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/88e736a4-e00b-40ca-b475-411530670a93 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:29:04.0234637", + "lastUpdatedTimeUtc": "2026-06-02T08:29:04.1977841", "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, 02 Jun 2026 08:29:24 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/88e736a4-e00b-40ca-b475-411530670a93/result + Pragma: + - no-cache + RequestId: + - 931d2010-2ece-4905-99be-7355d94c64a5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 88e736a4-e00b-40ca-b475-411530670a93 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/88e736a4-e00b-40ca-b475-411530670a93/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 08:29:25 GMT + Pragma: + - no-cache + RequestId: + - 8fa1beed-0d7d-49e1-8087-0930636c413b + 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": "Environment", "displayName": "fabcli000003", "definition": {"parts": + [{"path": "Setting/Sparkcompute.yml", "payload": "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '968' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/8977a9e5-712c-4b8c-b7f8-2a45f0cd1394/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, 02 Jun 2026 08:29:27 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1ad36429-1cff-4e59-b6d6-69d6f78a12d6 + Pragma: + - no-cache + RequestId: + - 85d38894-2353-434d-81aa-1cc76c976d54 + 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: + - 1ad36429-1cff-4e59-b6d6-69d6f78a12d6 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1ad36429-1cff-4e59-b6d6-69d6f78a12d6 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:29:26.6970356", + "lastUpdatedTimeUtc": "2026-06-02T08:29:29.663694", "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, 02 Jun 2026 08:29:47 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1ad36429-1cff-4e59-b6d6-69d6f78a12d6/result + Pragma: + - no-cache + RequestId: + - b7bd68aa-635e-4b9b-b902-408321178d38 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 1ad36429-1cff-4e59-b6d6-69d6f78a12d6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1ad36429-1cff-4e59-b6d6-69d6f78a12d6/result + response: + body: + string: '{"id": "efd60a11-0969-49dd-96b2-7a4990096b35", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 02 Jun 2026 08:29:48 GMT + Pragma: + - no-cache + RequestId: + - 527c7faa-8020-4a7b-a246-2f9b54f0519f + 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.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:29:49 GMT + Pragma: + - no-cache + RequestId: + - c26636de-eb86-49f0-9d7e-34c29e83f325 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/items + response: + body: + string: '{"value": [{"id": "8141e6ac-701b-4afa-84df-2d0d23b5c129", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "57fa0d82-34ac-49c1-b115-b0455b351398"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:29:50 GMT + Pragma: + - no-cache + RequestId: + - f558514c-678f-4c0e-9334-461d353b6a27 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:29:51 GMT + Pragma: + - no-cache + RequestId: + - a5121f73-e984-402a-b1ec-8f01c77e69d5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/8977a9e5-712c-4b8c-b7f8-2a45f0cd1394/items + response: + body: + string: '{"value": [{"id": "efd60a11-0969-49dd-96b2-7a4990096b35", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:45:47 GMT + Pragma: + - no-cache + RequestId: + - 3cb04c62-0098-4cb0-91ba-183a641185e7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:45:47 GMT + Pragma: + - no-cache + RequestId: + - 8901147e-739e-4348-9659-22886fe54fe0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/items + response: + body: + string: '{"value": [{"id": "8141e6ac-701b-4afa-84df-2d0d23b5c129", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "57fa0d82-34ac-49c1-b115-b0455b351398"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:45:49 GMT + Pragma: + - no-cache + RequestId: + - e3e55af2-cec1-4d8f-8b8a-1a28ad84b37e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/items/8141e6ac-701b-4afa-84df-2d0d23b5c129 + 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, 02 Jun 2026 08:45:49 GMT + Pragma: + - no-cache + RequestId: + - 215d9679-032d-4ad7-a710-ccdc7d61fea7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "57fa0d82-34ac-49c1-b115-b0455b351398", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '3034' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:45:50 GMT + Pragma: + - no-cache + RequestId: + - 1bf73d11-2324-4b52-9853-93a2bff5f770 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398/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, 02 Jun 2026 08:45:50 GMT + Pragma: + - no-cache + RequestId: + - 2fa802ac-239f-477a-8be9-11ad01218bd2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/57fa0d82-34ac-49c1-b115-b0455b351398 + 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, 02 Jun 2026 08:45:51 GMT + Pragma: + - no-cache + RequestId: + - 82219ca8-be9c-4048-8a6c-da25f53b0a36 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "17269422-3ac5-4e8d-bdf2-e2f9c37e009b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394", "displayName": "fabcli000002", + "description": "", "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: + - '2995' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:45:53 GMT + Pragma: + - no-cache + RequestId: + - dc1fdec4-ab7b-4553-a281-a9e8392415bf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/8977a9e5-712c-4b8c-b7f8-2a45f0cd1394/items + response: + body: + string: '{"value": [{"id": "efd60a11-0969-49dd-96b2-7a4990096b35", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "8977a9e5-712c-4b8c-b7f8-2a45f0cd1394"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:45:53 GMT + Pragma: + - no-cache + RequestId: + - ee88a882-f196-415d-a582-fb43ab7640de + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/8977a9e5-712c-4b8c-b7f8-2a45f0cd1394 + 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, 02 Jun 2026 08:45:54 GMT + Pragma: + - no-cache + RequestId: + - be6c6630-71af-4f30-9804-422fc9c05c75 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml index 5daa5088..f581f8a7 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:35:52 GMT + - Tue, 02 Jun 2026 10:31:22 GMT Pragma: - no-cache RequestId: - - 0ae08288-c86c-44b7-aa5d-fbca4ad65c72 + - 0a045caa-a47d-48ee-9322-365ed1091643 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:35:53 GMT + - Tue, 02 Jun 2026 10:31:23 GMT Pragma: - no-cache RequestId: - - 184ccf17-1341-4d71-8d6c-8d534feef505 + - 8c275987-bb01-46c4-a0c5-03b95b13f4ce 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '467' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:35:58 GMT + - Tue, 02 Jun 2026 10:31:27 GMT Pragma: - no-cache RequestId: - - ec8887e1-9daf-4d54-ad0c-57df1f8ffeba + - c8a7bfba-b95b-4f5f-b660-51346d651273 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "6746c90e-0a41-4b6f-87bd-a946136e6bf7", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '177' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:36:07 GMT + - Tue, 02 Jun 2026 10:31:34 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/1ee5246f-10fb-4a7d-aa2a-7da2812f8413 + - https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7 Pragma: - no-cache RequestId: - - 48daab91-7d63-4507-9377-7ea892738375 + - a26e7a0f-fc98-44d7-b65c-68656f58f2f1 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.6.1 (export; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413", + "My workspace", "description": "", "type": "Personal"}, {"id": "6746c90e-0a41-4b6f-87bd-a946136e6bf7", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2523' + - '2963' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:44:50 GMT + - Tue, 02 Jun 2026 10:32:08 GMT Pragma: - no-cache RequestId: - - 57023df3-6798-4b0d-9ab2-eab8dd505550 + - 414c1bb1-1644-4cd9-8e8a-35933d7def17 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,74 +264,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (export; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/1ee5246f-10fb-4a7d-aa2a-7da2812f8413/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/items response: body: - string: '{"value": [{"id": "548287ca-f7c6-4f64-b20b-9b04b532952c", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "53524b43-f19e-46bc-abc1-86fef4ae04d7", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "8b2899c6-0335-4526-bee6-c71dae4d2939", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "6bcd6f9c-3af1-4650-ad0b-ffe4da87b7e1", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "a9608cb6-44a4-4e39-b604-cf7ccc9c98d1", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "b9f622dc-8bcc-471c-94bf-27699470223f", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "1ae3f1b4-d00e-4307-aa33-ee917c97470c", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "c88c7e43-2c9d-4b3e-ae11-57390f6713c4", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "5781f7f5-73f2-4a52-8387-a007e0fa011f", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "a71519f2-fc76-4b40-b7c7-d3aa38c30e38", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "a0de3ff6-e213-4361-b9ac-86bca8a0c45e", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "63328185-5391-4afb-9422-226e7cf0b88b", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "c4883239-2fb5-4733-b9d9-69f1f4aa7d36", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "ed01d794-26c7-4cca-8e3c-f98dc8d53550", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, {"id": "e2126683-ced1-4e8d-9c41-22f568bdd817", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, {"id": "142b0245-dd7a-4958-b4a0-1da25b0596fe", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, {"id": "9df6dc04-ce79-455c-a588-d46bc3a7cfa3", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, {"id": "6c65536b-44bc-4358-ac50-e70c534715f9", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "65d1df45-d0d5-42bf-b68a-6f78ff64861b", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "c06a4580-5beb-47d3-a4e7-73c3e4ac08d5", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "c36e784e-be1a-4591-abef-e4e42c1f9a9f", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "69e6ac2a-f797-4998-8971-e2f9d7774031", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, {"id": "7ed1a4aa-e682-4def-9f4d-828abbaf0bfa", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, {"id": "e0fc9c3f-96ec-443e-bc14-249968ae613d", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, {"id": "9db47073-d3a0-4db7-8f80-8e699575d676", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "e36b053f-c2bc-4b56-be38-7521851c1218", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "a06c124c-24c6-499a-ac83-e544f2e4daa3", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "6dda25bd-37ec-4e56-ae46-ad1201833d0e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "283f530d-b69b-4bfe-bb2a-90c7a973df72", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}, - {"id": "2f7ccc49-1cb6-46a0-b4bc-4155e73dae40", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "1ee5246f-10fb-4a7d-aa2a-7da2812f8413"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -340,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1112' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:44:51 GMT + - Tue, 02 Jun 2026 10:32:09 GMT Pragma: - no-cache RequestId: - - 49cea137-5b6f-46dc-bf36-5a75d56a0a98 + - b115aaf5-aac0-45de-901b-5d3dad844d94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -376,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (export; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/1ee5246f-10fb-4a7d-aa2a-7da2812f8413 + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7 response: body: string: '' @@ -394,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 06:44:52 GMT + - Tue, 02 Jun 2026 10:32:09 GMT Pragma: - no-cache RequestId: - - 64b10591-5247-4d19-abb7-7834580f8eb3 + - b42e1e61-7b54-443d-b168-64b9ee05ac19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_environment_item_success.yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_environment_item_success.yaml new file mode 100644 index 00000000..643ba3cc --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_environment_item_success.yaml @@ -0,0 +1,656 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "6746c90e-0a41-4b6f-87bd-a946136e6bf7", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2963' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 10:31:35 GMT + Pragma: + - no-cache + RequestId: + - 7373891e-1f2d-4b31-b7a7-b9d7aef2c2f5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/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, 02 Jun 2026 10:31:35 GMT + Pragma: + - no-cache + RequestId: + - 131750d5-fc9b-469e-b466-4b3274ceee32 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/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, 02 Jun 2026 10:31:36 GMT + Pragma: + - no-cache + RequestId: + - c4a84961-553d-4b7e-9274-17e2238239da + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Environment", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/environments + response: + body: + string: '{"id": "6325c0df-64e2-4bf8-9ae8-8500e9dd1eb1", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "6746c90e-0a41-4b6f-87bd-a946136e6bf7"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 10:31:39 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - aa51fa85-c7bb-4d5d-ae40-59392f611d63 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "6746c90e-0a41-4b6f-87bd-a946136e6bf7", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2963' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 10:31:39 GMT + Pragma: + - no-cache + RequestId: + - be40c3b2-fc2b-4fea-bf46-a9a6583a9477 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/items + response: + body: + string: '{"value": [{"id": "6325c0df-64e2-4bf8-9ae8-8500e9dd1eb1", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "6746c90e-0a41-4b6f-87bd-a946136e6bf7"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 10:31:40 GMT + Pragma: + - no-cache + RequestId: + - d4bf6180-4af7-480a-8003-c574c0805f8d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/items/6325c0df-64e2-4bf8-9ae8-8500e9dd1eb1 + response: + body: + string: '{"id": "6325c0df-64e2-4bf8-9ae8-8500e9dd1eb1", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "6746c90e-0a41-4b6f-87bd-a946136e6bf7"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 10:31:41 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - ad44b79f-f6a4-4790-99b2-11c454857bd9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/items/6325c0df-64e2-4bf8-9ae8-8500e9dd1eb1/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, 02 Jun 2026 10:31:43 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67db55c4-b106-468b-a568-5c6c4bef28c2 + Pragma: + - no-cache + RequestId: + - 361d39f9-cd85-4390-8539-80a6b0671924 + 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: + - 67db55c4-b106-468b-a568-5c6c4bef28c2 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67db55c4-b106-468b-a568-5c6c4bef28c2 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T10:31:43.2990636", + "lastUpdatedTimeUtc": "2026-06-02T10:31:43.4963831", "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, 02 Jun 2026 10:32:03 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67db55c4-b106-468b-a568-5c6c4bef28c2/result + Pragma: + - no-cache + RequestId: + - d37b7293-1d8c-417a-8103-a5218fd0d184 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 67db55c4-b106-468b-a568-5c6c4bef28c2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67db55c4-b106-468b-a568-5c6c4bef28c2/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 10:32:04 GMT + Pragma: + - no-cache + RequestId: + - 7769df8f-91b2-4835-af77-3a7470344751 + 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.6.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": "6746c90e-0a41-4b6f-87bd-a946136e6bf7", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2963' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 10:32:05 GMT + Pragma: + - no-cache + RequestId: + - a7277fd9-f11b-4ca9-b92a-4754278743d7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/items + response: + body: + string: '{"value": [{"id": "6325c0df-64e2-4bf8-9ae8-8500e9dd1eb1", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "6746c90e-0a41-4b6f-87bd-a946136e6bf7"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 10:32:05 GMT + Pragma: + - no-cache + RequestId: + - 292fdc4b-5407-451b-ab29-9719f3e9264f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6746c90e-0a41-4b6f-87bd-a946136e6bf7/items/6325c0df-64e2-4bf8-9ae8-8500e9dd1eb1 + 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, 02 Jun 2026 10:32:07 GMT + Pragma: + - no-cache + RequestId: + - a4529e81-2a24-4e00-a2ee-cc77348582d6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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_default_format_success[Environment-2].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[Environment-2].yaml new file mode 100644 index 00000000..ca4a654c --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[Environment-2].yaml @@ -0,0 +1,656 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "bad71217-191b-4ea7-871e-82cc1102437f", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:19:22 GMT + Pragma: + - no-cache + RequestId: + - 595c22f7-ef8c-4218-9081-bb40fbb5335a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/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, 02 Jun 2026 08:19:22 GMT + Pragma: + - no-cache + RequestId: + - 89912a21-4d23-439a-9598-1c3d2d4eee1c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/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, 02 Jun 2026 08:19:23 GMT + Pragma: + - no-cache + RequestId: + - 69aa3ee9-bf9b-471e-847a-c6a7254462c8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Environment", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/environments + response: + body: + string: '{"id": "c42d6910-9141-4f7a-a85a-e5e4ad5c4263", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "bad71217-191b-4ea7-871e-82cc1102437f"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:19:28 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - f6a9d711-10b9-408f-91d7-b73dd2ea5be7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "bad71217-191b-4ea7-871e-82cc1102437f", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:19:29 GMT + Pragma: + - no-cache + RequestId: + - 6acd144f-6b9b-4190-987d-d24c744df3f2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items + response: + body: + string: '{"value": [{"id": "c42d6910-9141-4f7a-a85a-e5e4ad5c4263", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "bad71217-191b-4ea7-871e-82cc1102437f"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:19:29 GMT + Pragma: + - no-cache + RequestId: + - 1ce15a69-7bbb-4e23-892f-b17509e08a05 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items/c42d6910-9141-4f7a-a85a-e5e4ad5c4263 + response: + body: + string: '{"id": "c42d6910-9141-4f7a-a85a-e5e4ad5c4263", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "bad71217-191b-4ea7-871e-82cc1102437f"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:19:31 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 22e02de6-4f85-43a8-82c7-c5832973afe1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items/c42d6910-9141-4f7a-a85a-e5e4ad5c4263/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, 02 Jun 2026 08:19:31 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5fbf300a-df6a-4fb0-ba5c-7a27c82f5405 + Pragma: + - no-cache + RequestId: + - 2e940379-e1a8-4d1b-b1b9-0bcf260374fc + 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: + - 5fbf300a-df6a-4fb0-ba5c-7a27c82f5405 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5fbf300a-df6a-4fb0-ba5c-7a27c82f5405 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:19:32.5501672", + "lastUpdatedTimeUtc": "2026-06-02T08:19:32.8504586", "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, 02 Jun 2026 08:19:52 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5fbf300a-df6a-4fb0-ba5c-7a27c82f5405/result + Pragma: + - no-cache + RequestId: + - c0ae3d4c-f8a6-4f16-ae62-08e0b9264379 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 5fbf300a-df6a-4fb0-ba5c-7a27c82f5405 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5fbf300a-df6a-4fb0-ba5c-7a27c82f5405/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 08:19:53 GMT + Pragma: + - no-cache + RequestId: + - 7dcf2082-dce7-436c-8b88-77d3fc69bf5f + 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.6.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": "bad71217-191b-4ea7-871e-82cc1102437f", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:19:54 GMT + Pragma: + - no-cache + RequestId: + - 31e97e48-3fc7-4280-899a-059d1b639cdb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items + response: + body: + string: '{"value": [{"id": "c42d6910-9141-4f7a-a85a-e5e4ad5c4263", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "bad71217-191b-4ea7-871e-82cc1102437f"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:19:55 GMT + Pragma: + - no-cache + RequestId: + - 9d34a9a8-60ad-4441-ba50-5ee94bf4783e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items/c42d6910-9141-4f7a-a85a-e5e4ad5c4263 + 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, 02 Jun 2026 08:19:56 GMT + Pragma: + - no-cache + RequestId: + - 92ff482b-956c-4f95-90d5-7852a61e3169 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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[Environment].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[Environment].yaml new file mode 100644 index 00000000..0e85370a --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[Environment].yaml @@ -0,0 +1,656 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "bad71217-191b-4ea7-871e-82cc1102437f", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:20:33 GMT + Pragma: + - no-cache + RequestId: + - 13354c33-239e-4cf1-8388-146fd3856429 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/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, 02 Jun 2026 08:20:33 GMT + Pragma: + - no-cache + RequestId: + - ab244713-d040-40c7-9567-2629af53bfe3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/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, 02 Jun 2026 08:20:34 GMT + Pragma: + - no-cache + RequestId: + - d48b8223-2f39-4d89-943d-57b66bf808be + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Environment", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/environments + response: + body: + string: '{"id": "d7a46ec8-f66c-433a-9bac-38bbb3e8094b", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "bad71217-191b-4ea7-871e-82cc1102437f"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:20:38 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 6be699ce-a1d1-42dc-9a7d-9d633f0fb704 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "bad71217-191b-4ea7-871e-82cc1102437f", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:20:39 GMT + Pragma: + - no-cache + RequestId: + - 93ffc262-fc96-4d37-a2a1-521755e2b37a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items + response: + body: + string: '{"value": [{"id": "d7a46ec8-f66c-433a-9bac-38bbb3e8094b", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "bad71217-191b-4ea7-871e-82cc1102437f"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:20:39 GMT + Pragma: + - no-cache + RequestId: + - 269038de-7aa8-418d-ad76-416b1357d1cf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items/d7a46ec8-f66c-433a-9bac-38bbb3e8094b + response: + body: + string: '{"id": "d7a46ec8-f66c-433a-9bac-38bbb3e8094b", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "bad71217-191b-4ea7-871e-82cc1102437f"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:20:40 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 95f56a5e-a9c4-4f69-b398-638a17ef3f7e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items/d7a46ec8-f66c-433a-9bac-38bbb3e8094b/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, 02 Jun 2026 08:20:41 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26c51ac0-5ae3-451b-a3d8-f5311e8ea4cd + Pragma: + - no-cache + RequestId: + - 74efdb4a-d449-4338-88ad-e1bd1b332721 + 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: + - 26c51ac0-5ae3-451b-a3d8-f5311e8ea4cd + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26c51ac0-5ae3-451b-a3d8-f5311e8ea4cd + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:20:41.9014238", + "lastUpdatedTimeUtc": "2026-06-02T08:20:42.107733", "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, 02 Jun 2026 08:21:02 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26c51ac0-5ae3-451b-a3d8-f5311e8ea4cd/result + Pragma: + - no-cache + RequestId: + - b5e2e685-1cc1-4cfd-832b-cb7452e89bc6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 26c51ac0-5ae3-451b-a3d8-f5311e8ea4cd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26c51ac0-5ae3-451b-a3d8-f5311e8ea4cd/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 08:21:03 GMT + Pragma: + - no-cache + RequestId: + - b21439ab-a4fc-41d5-b18c-e95a65501837 + 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.6.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": "bad71217-191b-4ea7-871e-82cc1102437f", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:21:04 GMT + Pragma: + - no-cache + RequestId: + - 8349f222-1b67-4eae-969e-173142e67b68 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items + response: + body: + string: '{"value": [{"id": "d7a46ec8-f66c-433a-9bac-38bbb3e8094b", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "bad71217-191b-4ea7-871e-82cc1102437f"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:21:04 GMT + Pragma: + - no-cache + RequestId: + - db8b5744-c6fb-4847-90df-47545534aeab + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/bad71217-191b-4ea7-871e-82cc1102437f/items/d7a46ec8-f66c-433a-9bac-38bbb3e8094b + 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, 02 Jun 2026 08:21:06 GMT + Pragma: + - no-cache + RequestId: + - f822a939-83f7-4007-badc-f2c978ea9437 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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 5f063088..edb2742e 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:46:42 GMT + - Tue, 02 Jun 2026 07:58:45 GMT Pragma: - no-cache RequestId: - - 22529fd9-859e-42f8-8593-ff64f7fc1b7f + - e88e384e-0c10-4d63-85bf-dc5aade8ffda 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:46:42 GMT + - Tue, 02 Jun 2026 07:58:46 GMT Pragma: - no-cache RequestId: - - 55e055f5-f4a1-408c-8316-6ac89f458dbf + - d0737ee9-7fa2-4fda-a0d0-b07e1f5fd3f9 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:46:46 GMT + - Tue, 02 Jun 2026 07:58:51 GMT Pragma: - no-cache RequestId: - - ec8a0ace-3b19-4451-9ca7-21ddc08edf1a + - 536a3dbf-ff3a-4df8-905f-ee435f34013f 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "817e026f-7fcd-4779-9cb3-a5b6ff5294cc", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "33976cdf-a1f7-4573-b650-5c8e3c685802", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '177' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:46:53 GMT + - Tue, 02 Jun 2026 07:58:58 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/817e026f-7fcd-4779-9cb3-a5b6ff5294cc + - https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802 Pragma: - no-cache RequestId: - - b074c6b5-ca31-477e-81b1-e390799cb964 + - 4d0acb65-a4a3-4ae7-ae8a-9ff7676c0dd7 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.6.1 (get; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "817e026f-7fcd-4779-9cb3-a5b6ff5294cc", + "My workspace", "description": "", "type": "Personal"}, {"id": "33976cdf-a1f7-4573-b650-5c8e3c685802", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2527' + - '2964' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:48:49 GMT + - Tue, 02 Jun 2026 07:59:37 GMT Pragma: - no-cache RequestId: - - 046ba11e-1979-4246-9767-5c1d23d8ff54 + - 193150e5-e5a0-40e2-8078-03d37cfee89e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,24 +264,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (get; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/817e026f-7fcd-4779-9cb3-a5b6ff5294cc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/items response: body: - string: '{"value": [{"id": "dd5e85b9-1a09-479c-8dbd-7d6e9326530d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "817e026f-7fcd-4779-9cb3-a5b6ff5294cc"}, - {"id": "f35e057b-7445-4a66-b218-b9912dbd0d6c", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "817e026f-7fcd-4779-9cb3-a5b6ff5294cc"}, - {"id": "4063c175-1518-4825-ac84-b3ccf978225a", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "817e026f-7fcd-4779-9cb3-a5b6ff5294cc"}, - {"id": "f768b84f-31a5-4fe0-ac58-1041e5e58a57", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "817e026f-7fcd-4779-9cb3-a5b6ff5294cc"}, - {"id": "8157b692-104d-4e74-8ffd-20a6c1e760b6", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "817e026f-7fcd-4779-9cb3-a5b6ff5294cc"}, - {"id": "7112d9c8-8476-41e6-ad38-9ad4d73c2cb2", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "817e026f-7fcd-4779-9cb3-a5b6ff5294cc"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -290,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '371' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:48:50 GMT + - Tue, 02 Jun 2026 07:59:39 GMT Pragma: - no-cache RequestId: - - 06c10634-30bc-4cf5-be2e-6881d12a446a + - 0de0f2a9-cd21-4074-bb1c-e73723c895d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -326,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (get; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/817e026f-7fcd-4779-9cb3-a5b6ff5294cc + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802 response: body: string: '' @@ -344,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 06:48:51 GMT + - Tue, 02 Jun 2026 07:59:39 GMT Pragma: - no-cache RequestId: - - 0aaecd0d-2989-4a22-b88d-dedee7184e10 + - 689ad220-fd25-4824-8c7d-f211c3f363c8 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[Environment].yaml b/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[Environment].yaml index 49cbb523..7aebf941 100644 --- a/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[Environment].yaml +++ b/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[Environment].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "e50418d1-34ce-4019-800a-81f5ff7dee14", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:12 GMT + - Tue, 02 Jun 2026 07:51:19 GMT Pragma: - no-cache RequestId: - - 111232ff-7866-4540-a8eb-997e1548801a + - f51fd456-80cf-41df-85ce-abb0a1b77e2b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:13 GMT + - Tue, 02 Jun 2026 07:51:20 GMT Pragma: - no-cache RequestId: - - 7f60d1d8-4ace-4a7f-adb6-bae1eb8237ba + - 702e4148-5636-48eb-a87d-84122cdadd1c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:14 GMT + - Tue, 02 Jun 2026 07:51:21 GMT Pragma: - no-cache RequestId: - - e2072f9a-3351-4ecf-9038-69a5646f4ddf + - c9838bfb-9097-45b5-bcf2-906c01a38695 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '76' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments response: body: - string: '{"id": "a516e15b-0abe-411e-801f-845d03cef133", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}' + string: '{"id": "7694204b-6cd2-4482-b04b-ca7489c69b74", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "e50418d1-34ce-4019-800a-81f5ff7dee14"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:15 GMT + - Tue, 02 Jun 2026 07:51:24 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 681250fd-7344-4000-b3e5-7d36bf3a1ae1 + - 03d326af-3239-4264-8646-a99693dd2074 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +211,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "e50418d1-34ce-4019-800a-81f5ff7dee14", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:17 GMT + - Tue, 02 Jun 2026 07:51:25 GMT Pragma: - no-cache RequestId: - - 2ff38b48-1f07-402f-8f56-4b0fec25d815 + - 512af648-0862-4be5-9f4e-968cffe85e36 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items response: body: - string: '{"value": [{"id": "a516e15b-0abe-411e-801f-845d03cef133", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}]}' + string: '{"value": [{"id": "7694204b-6cd2-4482-b04b-ca7489c69b74", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "e50418d1-34ce-4019-800a-81f5ff7dee14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:18 GMT + - Tue, 02 Jun 2026 07:51:26 GMT Pragma: - no-cache RequestId: - - 31fafa70-b958-4595-abc0-07036c395d8e + - 7abbc70b-c81b-4bf2-b8f9-52c7ec08aec5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,16 +311,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/a516e15b-0abe-411e-801f-845d03cef133 + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/7694204b-6cd2-4482-b04b-ca7489c69b74 response: body: - string: '{"id": "a516e15b-0abe-411e-801f-845d03cef133", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "2dafb21a-c8ca-4383-9e5d-079cba9bd854", "startTime": - "2026-01-28T13:37:16.4991502Z", "endTime": "2026-01-28T13:37:16.4991502Z", + string: '{"id": "7694204b-6cd2-4482-b04b-ca7489c69b74", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "e50418d1-34ce-4019-800a-81f5ff7dee14", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "ccd3fd4e-cf31-429c-824c-d30ba11b27cc", + "startTime": "2026-06-02T07:51:24.6747372Z", "endTime": "2026-06-02T07:51:24.6747372Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -332,17 +330,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '314' + - '301' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:18 GMT + - Tue, 02 Jun 2026 07:51:27 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f9de4178-d73b-4fd6-82ba-54d60a7aac3d + - 475f9dba-5fae-42f4-ac5d-67be884670c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -356,6 +354,112 @@ 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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items/7694204b-6cd2-4482-b04b-ca7489c69b74/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, 02 Jun 2026 07:51:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f080fa3a-a6f0-422f-9d0f-e235d319cffa + Pragma: + - no-cache + RequestId: + - ada74c3c-2ac0-488e-8ba3-aaa631de6268 + 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: + - f080fa3a-a6f0-422f-9d0f-e235d319cffa + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f080fa3a-a6f0-422f-9d0f-e235d319cffa + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T07:51:28.8729899", + "lastUpdatedTimeUtc": "2026-06-02T07:51:29.0776951", "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, 02 Jun 2026 07:51:49 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f080fa3a-a6f0-422f-9d0f-e235d319cffa/result + Pragma: + - no-cache + RequestId: + - 565f6a4e-19c3-4c5a-bfd4-e4338d25a890 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - f080fa3a-a6f0-422f-9d0f-e235d319cffa + status: + code: 200 + message: OK - request: body: null headers: @@ -368,9 +472,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items/a516e15b-0abe-411e-801f-845d03cef133/connections + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f080fa3a-a6f0-422f-9d0f-e235d319cffa/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 07:51:50 GMT + Pragma: + - no-cache + RequestId: + - 6c670dec-8b0e-4d1f-b9f4-d37e8ef163fd + 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.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items/7694204b-6cd2-4482-b04b-ca7489c69b74/connections response: body: string: '{"value": []}' @@ -386,11 +537,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:20 GMT + - Tue, 02 Jun 2026 07:51:51 GMT Pragma: - no-cache RequestId: - - 7e643410-c27d-446d-869c-edfbc2ee531b + - cdb6c2a7-3eb5-4d60-bde9-08b91679c247 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -416,25 +567,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/a516e15b-0abe-411e-801f-845d03cef133/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/7694204b-6cd2-4482-b04b-ca7489c69b74/libraries response: body: - string: '{"requestId": "05016714-d6d0-4717-b9d9-b62f25f83bb8", "errorCode": + string: '{"requestId": "9a4e8553-4edb-4db4-bb25-11d011c1e7e7", "errorCode": "EnvironmentLibrariesNotFound", "message": "This environment does not have - any published libraries. Please publish libraries."}' + any published libraries. Please publish libraries.", "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId Content-Length: - - '189' + - '209' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:20 GMT + - Tue, 02 Jun 2026 07:51:52 GMT RequestId: - - 05016714-d6d0-4717-b9d9-b62f25f83bb8 + - 9a4e8553-4edb-4db4-bb25-11d011c1e7e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -462,25 +613,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/a516e15b-0abe-411e-801f-845d03cef133/staging/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/7694204b-6cd2-4482-b04b-ca7489c69b74/staging/libraries response: body: - string: '{"requestId": "fb08f831-5866-4f93-aca1-26540824ad72", "errorCode": + string: '{"requestId": "7044d0d5-e56d-4f4a-91dd-6ef19bd164a6", "errorCode": "EnvironmentLibrariesNotFound", "message": "This environment does not have - any staged libraries. Please upload libraries."}' + any staged libraries. Please upload libraries.", "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId Content-Length: - - '185' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:22 GMT + - Tue, 02 Jun 2026 07:51:53 GMT RequestId: - - fb08f831-5866-4f93-aca1-26540824ad72 + - 7044d0d5-e56d-4f4a-91dd-6ef19bd164a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -508,9 +659,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/a516e15b-0abe-411e-801f-845d03cef133/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/7694204b-6cd2-4482-b04b-ca7489c69b74/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -526,9 +677,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:22 GMT + - Tue, 02 Jun 2026 07:51:56 GMT RequestId: - - fc1af281-c86b-4d1c-97fa-469767f41c74 + - 89c14476-1143-49e0-ae37-1d3da69b2ba1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -554,9 +705,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/a516e15b-0abe-411e-801f-845d03cef133/staging/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/7694204b-6cd2-4482-b04b-ca7489c69b74/staging/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -572,9 +723,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:23 GMT + - Tue, 02 Jun 2026 07:51:57 GMT RequestId: - - 523c2bd9-0242-40a0-9888-8d847dc4ad82 + - 90d60abf-1f54-419e-9cc4-440b94412edd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -600,14 +751,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "e50418d1-34ce-4019-800a-81f5ff7dee14", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -616,15 +768,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:25 GMT + - Tue, 02 Jun 2026 07:51:58 GMT Pragma: - no-cache RequestId: - - 918987a5-8d0a-4eac-b0ec-2b86172a1e43 + - c104aaff-df03-41da-8c51-d75b2e6c758a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -650,14 +802,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items response: body: - string: '{"value": [{"id": "a516e15b-0abe-411e-801f-845d03cef133", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}]}' + string: '{"value": [{"id": "7694204b-6cd2-4482-b04b-ca7489c69b74", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "e50418d1-34ce-4019-800a-81f5ff7dee14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -666,15 +817,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:37:25 GMT + - Tue, 02 Jun 2026 07:51:59 GMT Pragma: - no-cache RequestId: - - cc06d587-6461-4bb3-bf0b-da6debff1418 + - 13f3cf84-dc0a-43a5-9727-ff5a06470082 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -702,9 +853,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items/a516e15b-0abe-411e-801f-845d03cef133 + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items/7694204b-6cd2-4482-b04b-ca7489c69b74 response: body: string: '' @@ -720,11 +871,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 28 Jan 2026 13:37:26 GMT + - Tue, 02 Jun 2026 07:51:59 GMT Pragma: - no-cache RequestId: - - 678893d3-d89b-4fe0-a7dc-df79df0e4d62 + - d2177dd1-c0e4-4958-a027-04ef0eedef4c 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_warning_behavior_success[Environment-True].yaml b/tests/test_commands/recordings/test_commands/test_get/test_get_item_warning_behavior_success[Environment-True].yaml new file mode 100644 index 00000000..2a61ac3b --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_get/test_get_item_warning_behavior_success[Environment-True].yaml @@ -0,0 +1,892 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "33976cdf-a1f7-4573-b650-5c8e3c685802", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2964' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:58:58 GMT + Pragma: + - no-cache + RequestId: + - 52a562fa-b69d-4454-a5ff-e3ffd71570e9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/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, 02 Jun 2026 07:58:59 GMT + Pragma: + - no-cache + RequestId: + - cf5cab49-df6e-422e-9626-69e4d4aa24e6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/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, 02 Jun 2026 07:59:00 GMT + Pragma: + - no-cache + RequestId: + - 7486a850-9285-44cb-820f-82b161fcc38b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Environment", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/environments + response: + body: + string: '{"id": "7f6977ba-0e6e-4042-bcec-2c5fd356bb8d", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "33976cdf-a1f7-4573-b650-5c8e3c685802"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:03 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 52994b1a-119c-432c-a770-9e3d57dcd6c6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "33976cdf-a1f7-4573-b650-5c8e3c685802", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2964' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:04 GMT + Pragma: + - no-cache + RequestId: + - 2a7fde69-8f00-4ea1-8a58-b36b3c143cdb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/items + response: + body: + string: '{"value": [{"id": "7f6977ba-0e6e-4042-bcec-2c5fd356bb8d", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "33976cdf-a1f7-4573-b650-5c8e3c685802"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:04 GMT + Pragma: + - no-cache + RequestId: + - 0315e81c-82d0-4a7b-aaed-8d0d4525f5e8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/environments/7f6977ba-0e6e-4042-bcec-2c5fd356bb8d + response: + body: + string: '{"id": "7f6977ba-0e6e-4042-bcec-2c5fd356bb8d", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "33976cdf-a1f7-4573-b650-5c8e3c685802", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "1d8240d1-d144-4f44-8ec2-7515d1d63372", + "startTime": "2026-06-02T07:59:03.6481367Z", "endTime": "2026-06-02T07:59:03.6481367Z", + "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": + {"state": "Success"}}}}}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '301' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:06 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 4a7c3d48-de1f-48ee-aaa6-dad4b0309f9d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/items/7f6977ba-0e6e-4042-bcec-2c5fd356bb8d/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, 02 Jun 2026 07:59:07 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0569389-66f5-410e-a5ec-6de5ac2e8aa7 + Pragma: + - no-cache + RequestId: + - f2bfc2c4-d32b-4417-86e5-cc85e799acaf + 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: + - f0569389-66f5-410e-a5ec-6de5ac2e8aa7 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0569389-66f5-410e-a5ec-6de5ac2e8aa7 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T07:59:07.9067103", + "lastUpdatedTimeUtc": "2026-06-02T07:59:08.0741713", "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, 02 Jun 2026 07:59:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0569389-66f5-410e-a5ec-6de5ac2e8aa7/result + Pragma: + - no-cache + RequestId: + - a66c0757-dc7e-4492-9862-618448a76060 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - f0569389-66f5-410e-a5ec-6de5ac2e8aa7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0569389-66f5-410e-a5ec-6de5ac2e8aa7/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 07:59:29 GMT + Pragma: + - no-cache + RequestId: + - a22f6370-aeff-49bb-bc02-a108b831cd4e + 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.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/items/7f6977ba-0e6e-4042-bcec-2c5fd356bb8d/connections + 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, 02 Jun 2026 07:59:30 GMT + Pragma: + - no-cache + RequestId: + - 6c4cc326-a617-4390-b95c-1c31e00d04c1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/environments/7f6977ba-0e6e-4042-bcec-2c5fd356bb8d/libraries + response: + body: + string: '{"requestId": "710f6b53-31d1-40f8-9425-ea9536ea6564", "errorCode": + "EnvironmentLibrariesNotFound", "message": "This environment does not have + any published libraries. Please publish libraries.", "isRetriable": false}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '209' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:31 GMT + RequestId: + - 710f6b53-31d1-40f8-9425-ea9536ea6564 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-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: + - EnvironmentLibrariesNotFound + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/environments/7f6977ba-0e6e-4042-bcec-2c5fd356bb8d/staging/libraries + response: + body: + string: '{"requestId": "b48210de-2805-42f3-8ffe-db98cedf1f44", "errorCode": + "EnvironmentLibrariesNotFound", "message": "This environment does not have + any staged libraries. Please upload libraries.", "isRetriable": false}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '205' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:32 GMT + RequestId: + - b48210de-2805-42f3-8ffe-db98cedf1f44 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-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: + - EnvironmentLibrariesNotFound + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/environments/7f6977ba-0e6e-4042-bcec-2c5fd356bb8d/sparkcompute + response: + body: + string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": + "00000000-0000-0000-0000-000000000000"}, "driverCores": 8, "driverMemory": + "56g", "executorCores": 8, "executorMemory": "56g", "dynamicExecutorAllocation": + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}, "sparkProperties": + {}, "runtimeVersion": "1.3"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '396' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:33 GMT + RequestId: + - 3b76eaed-ce07-4d4a-8567-4cbdfcabb39c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/environments/7f6977ba-0e6e-4042-bcec-2c5fd356bb8d/staging/sparkcompute + response: + body: + string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": + "00000000-0000-0000-0000-000000000000"}, "driverCores": 8, "driverMemory": + "56g", "executorCores": 8, "executorMemory": "56g", "dynamicExecutorAllocation": + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}, "sparkProperties": + {}, "runtimeVersion": "1.3"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '396' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:35 GMT + RequestId: + - 5aa0ee97-efb1-445a-9258-6ded9131fccf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "33976cdf-a1f7-4573-b650-5c8e3c685802", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2964' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:36 GMT + Pragma: + - no-cache + RequestId: + - d6685adf-576b-4fa1-8041-a8b6e3a39e4b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/items + response: + body: + string: '{"value": [{"id": "7f6977ba-0e6e-4042-bcec-2c5fd356bb8d", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "33976cdf-a1f7-4573-b650-5c8e3c685802"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 07:59:36 GMT + Pragma: + - no-cache + RequestId: + - 73757709-ad79-4845-8b52-3052512c056f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/33976cdf-a1f7-4573-b650-5c8e3c685802/items/7f6977ba-0e6e-4042-bcec-2c5fd356bb8d + 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, 02 Jun 2026 07:59:37 GMT + Pragma: + - no-cache + RequestId: + - b67627b7-e09c-45b2-a08c-fde0b3349e12 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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/test_get_item_with_properties_success[Environment-expected_properties0].yaml b/tests/test_commands/recordings/test_commands/test_get/test_get_item_with_properties_success[Environment-expected_properties0].yaml index e2ba8221..86d6093d 100644 --- a/tests/test_commands/recordings/test_commands/test_get/test_get_item_with_properties_success[Environment-expected_properties0].yaml +++ b/tests/test_commands/recordings/test_commands/test_get/test_get_item_with_properties_success[Environment-expected_properties0].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "e50418d1-34ce-4019-800a-81f5ff7dee14", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:25 GMT + - Tue, 02 Jun 2026 07:52:42 GMT Pragma: - no-cache RequestId: - - 4df47610-5d6e-44c3-a836-b134eb168ed5 + - 841d69e8-f2d1-4e32-bdbc-d0ca2542f371 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,21 +62,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items response: body: - string: '{"value": [{"id": "4307c500-c838-4ca4-a060-269fa6b39c7d", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, - {"id": "4ca66565-458e-479c-8a9c-dde50e3396bc", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260128135038", "description": "", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, {"id": "bddf27c3-d893-4273-9035-ff67eeffc533", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260128135101", - "description": "", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, - {"id": "d2274a21-9781-499c-aadc-5c2080d36cb3", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260128135038", "description": "", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -84,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '329' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:25 GMT + - Tue, 02 Jun 2026 07:52:42 GMT Pragma: - no-cache RequestId: - - 37094891-ba17-4a35-b423-3a5028fa5bd4 + - 7ec62a10-ebad-461d-a8fa-8e135b7d6be5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -118,21 +110,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items response: body: - string: '{"value": [{"id": "4307c500-c838-4ca4-a060-269fa6b39c7d", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, - {"id": "4ca66565-458e-479c-8a9c-dde50e3396bc", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260128135038", "description": "", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, {"id": "bddf27c3-d893-4273-9035-ff67eeffc533", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260128135101", - "description": "", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, - {"id": "d2274a21-9781-499c-aadc-5c2080d36cb3", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260128135038", "description": "", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -141,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '329' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:26 GMT + - Tue, 02 Jun 2026 07:52:44 GMT Pragma: - no-cache RequestId: - - 0cb05438-d2bb-449e-b6f9-5a291da07d1b + - 5a2b77a0-c624-42c2-b832-0ea565fe82ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -174,18 +157,16 @@ interactions: - keep-alive Content-Length: - '76' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments response: body: - string: '{"id": "217153be-4e1d-4ff0-b3af-23a207d012c8", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}' + string: '{"id": "eba38472-8125-4094-afd0-e635ff58b16b", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "e50418d1-34ce-4019-800a-81f5ff7dee14"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -194,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:27 GMT + - Tue, 02 Jun 2026 07:52:45 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e9a1bde2-0395-444e-9a6e-0bc5cee7a784 + - 9c08e542-be64-42be-ab3d-baf7cb685264 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -230,14 +211,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "e50418d1-34ce-4019-800a-81f5ff7dee14", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -246,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:29 GMT + - Tue, 02 Jun 2026 07:52:46 GMT Pragma: - no-cache RequestId: - - e29d2108-a1a5-4327-9403-8960314fbf26 + - 7dcdbe06-9858-471e-9575-36f3f0d9c5cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -280,22 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items response: body: - string: '{"value": [{"id": "4307c500-c838-4ca4-a060-269fa6b39c7d", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, - {"id": "4ca66565-458e-479c-8a9c-dde50e3396bc", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260128135038", "description": "", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, {"id": "bddf27c3-d893-4273-9035-ff67eeffc533", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260128135101", - "description": "", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, - {"id": "d2274a21-9781-499c-aadc-5c2080d36cb3", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260128135038", "description": "", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, {"id": "217153be-4e1d-4ff0-b3af-23a207d012c8", - "type": "Environment", "displayName": "fabcli000001", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}]}' + string: '{"value": [{"id": "eba38472-8125-4094-afd0-e635ff58b16b", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "e50418d1-34ce-4019-800a-81f5ff7dee14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -304,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '390' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:29 GMT + - Tue, 02 Jun 2026 07:52:47 GMT Pragma: - no-cache RequestId: - - 7dba379a-94a3-4218-a18c-0414d782ab76 + - 12e5807e-547d-41b3-9a23-9396321687b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -338,16 +311,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/217153be-4e1d-4ff0-b3af-23a207d012c8 + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/eba38472-8125-4094-afd0-e635ff58b16b response: body: - string: '{"id": "217153be-4e1d-4ff0-b3af-23a207d012c8", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "cdfdf2c8-c940-499e-a848-3627c2f40cfd", "startTime": - "2026-01-28T13:53:28.6021436Z", "endTime": "2026-01-28T13:53:28.6021436Z", + string: '{"id": "eba38472-8125-4094-afd0-e635ff58b16b", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "e50418d1-34ce-4019-800a-81f5ff7dee14", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "5daa2af1-ecb0-4f52-99ac-a7e68c243225", + "startTime": "2026-06-02T07:52:46.2080088Z", "endTime": "2026-06-02T07:52:46.2080088Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -358,17 +330,71 @@ interactions: Content-Encoding: - gzip Content-Length: - - '314' + - '301' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:29 GMT + - Tue, 02 Jun 2026 07:52:48 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 92b22928-687e-4a8c-9b28-64cc3f78acd4 + - 57b5c34f-0343-4fe7-be3a-c0b4e3bdb60a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items/eba38472-8125-4094-afd0-e635ff58b16b/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, 02 Jun 2026 07:52:49 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/777d7d87-37fe-4034-b4dd-74f8c8418877 + Pragma: + - no-cache + RequestId: + - 5da434b8-8e33-466c-b348-bdd93884f9e3 + Retry-After: + - '20' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -379,6 +405,105 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' + x-ms-operation-id: + - 777d7d87-37fe-4034-b4dd-74f8c8418877 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/777d7d87-37fe-4034-b4dd-74f8c8418877 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T07:52:50.0715605", + "lastUpdatedTimeUtc": "2026-06-02T07:52:50.2320208", "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, 02 Jun 2026 07:53:10 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/777d7d87-37fe-4034-b4dd-74f8c8418877/result + Pragma: + - no-cache + RequestId: + - 69cfd729-87a8-46cf-aa16-56e54616267c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 777d7d87-37fe-4034-b4dd-74f8c8418877 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/777d7d87-37fe-4034-b4dd-74f8c8418877/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 07:53:11 GMT + Pragma: + - no-cache + RequestId: + - 5d7e50ea-cbc8-49b3-99d8-1b762d61d8de + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny status: code: 200 message: OK @@ -394,9 +519,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items/217153be-4e1d-4ff0-b3af-23a207d012c8/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items/eba38472-8125-4094-afd0-e635ff58b16b/connections response: body: string: '{"value": []}' @@ -412,11 +537,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:31 GMT + - Tue, 02 Jun 2026 07:53:12 GMT Pragma: - no-cache RequestId: - - 3d457545-f79b-4e2c-a7f1-630b5498954c + - 157415f6-7a44-457f-b3f5-f61d6e455713 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -442,25 +567,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/217153be-4e1d-4ff0-b3af-23a207d012c8/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/eba38472-8125-4094-afd0-e635ff58b16b/libraries response: body: - string: '{"requestId": "7bc347c7-c86a-4bd5-89b9-b4053024fa45", "errorCode": + string: '{"requestId": "17e49195-6fb7-43f5-89ba-1200f73d687c", "errorCode": "EnvironmentLibrariesNotFound", "message": "This environment does not have - any published libraries. Please publish libraries."}' + any published libraries. Please publish libraries.", "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId Content-Length: - - '189' + - '209' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:31 GMT + - Tue, 02 Jun 2026 07:53:13 GMT RequestId: - - 7bc347c7-c86a-4bd5-89b9-b4053024fa45 + - 17e49195-6fb7-43f5-89ba-1200f73d687c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -488,25 +613,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/217153be-4e1d-4ff0-b3af-23a207d012c8/staging/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/eba38472-8125-4094-afd0-e635ff58b16b/staging/libraries response: body: - string: '{"requestId": "35373c99-3865-46ac-8ce4-bdbb396d69e9", "errorCode": + string: '{"requestId": "f2488e6a-1099-4600-927c-10f3a9b3091a", "errorCode": "EnvironmentLibrariesNotFound", "message": "This environment does not have - any staged libraries. Please upload libraries."}' + any staged libraries. Please upload libraries.", "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId Content-Length: - - '185' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:32 GMT + - Tue, 02 Jun 2026 07:53:13 GMT RequestId: - - 35373c99-3865-46ac-8ce4-bdbb396d69e9 + - f2488e6a-1099-4600-927c-10f3a9b3091a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -534,9 +659,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/217153be-4e1d-4ff0-b3af-23a207d012c8/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/eba38472-8125-4094-afd0-e635ff58b16b/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -552,9 +677,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:35 GMT + - Tue, 02 Jun 2026 07:53:14 GMT RequestId: - - 19c86528-aa2f-4727-a571-a016f76192c1 + - b52d858b-e25c-4c2f-af5f-cf4beeb7489f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -580,9 +705,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/environments/217153be-4e1d-4ff0-b3af-23a207d012c8/staging/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/environments/eba38472-8125-4094-afd0-e635ff58b16b/staging/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -593,14 +718,16 @@ interactions: headers: Access-Control-Expose-Headers: - RequestId + Connection: + - close Content-Length: - '396' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:36 GMT + - Tue, 02 Jun 2026 07:53:15 GMT RequestId: - - 4a9f3c1e-5aee-4cdd-ad15-90b96826bca1 + - 7c3dea2a-b97f-488e-b41e-4afdc794b95c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -626,14 +753,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "e50418d1-34ce-4019-800a-81f5ff7dee14", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -642,15 +770,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:36 GMT + - Tue, 02 Jun 2026 07:53:17 GMT Pragma: - no-cache RequestId: - - 2bfb8cda-fa2e-4072-9fa5-03719c436e54 + - 02599242-bf7d-496c-846b-83a28986f566 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,22 +804,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items response: body: - string: '{"value": [{"id": "4307c500-c838-4ca4-a060-269fa6b39c7d", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, - {"id": "4ca66565-458e-479c-8a9c-dde50e3396bc", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260128135038", "description": "", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, {"id": "bddf27c3-d893-4273-9035-ff67eeffc533", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260128135101", - "description": "", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, - {"id": "d2274a21-9781-499c-aadc-5c2080d36cb3", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260128135038", "description": "", "workspaceId": - "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}, {"id": "217153be-4e1d-4ff0-b3af-23a207d012c8", - "type": "Environment", "displayName": "fabcli000001", "workspaceId": "6838e56c-3ebe-4ce3-8b69-4322bc7c5392"}]}' + string: '{"value": [{"id": "eba38472-8125-4094-afd0-e635ff58b16b", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "e50418d1-34ce-4019-800a-81f5ff7dee14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -700,15 +819,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '390' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 28 Jan 2026 13:53:37 GMT + - Tue, 02 Jun 2026 07:53:17 GMT Pragma: - no-cache RequestId: - - 69075d52-882b-4d5b-8d7f-8290b2e551fe + - 3d0d1c7c-a2f0-4fe1-9af5-a128ecd121d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -736,9 +855,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/6838e56c-3ebe-4ce3-8b69-4322bc7c5392/items/217153be-4e1d-4ff0-b3af-23a207d012c8 + uri: https://api.fabric.microsoft.com/v1/workspaces/e50418d1-34ce-4019-800a-81f5ff7dee14/items/eba38472-8125-4094-afd0-e635ff58b16b response: body: string: '' @@ -754,11 +873,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 28 Jan 2026 13:53:37 GMT + - Tue, 02 Jun 2026 07:53:18 GMT Pragma: - no-cache RequestId: - - 48c3fc58-4ab8-4862-ad2f-2fa26315b02c + - 3cb7582d-8030-4f22-afc0-424ac7ec6ab5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_import/class_setup.yaml index c425c27c..d47b13d1 100644 --- a/tests/test_commands/recordings/test_commands/test_import/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_import/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (cp; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2987' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:08 GMT + - Tue, 02 Jun 2026 12:53:01 GMT Pragma: - no-cache RequestId: - - 548ef7aa-2e9c-415a-9906-63da0f7639d3 + - cab6221f-7cf2-472f-a38d-6d9f83e3f973 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.6.1 (cp; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2987' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:10 GMT + - Tue, 02 Jun 2026 12:53:01 GMT Pragma: - no-cache RequestId: - - cd9e3652-cba3-4fde-bfe8-a9a35478892d + - f18cf16e-22e5-48e1-a63f-3815da287ee4 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.6.1 (cp; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '467' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:21 GMT + - Tue, 02 Jun 2026 12:53:05 GMT Pragma: - no-cache RequestId: - - 2b26856c-b0a5-4ead-aa3b-3d13a17356f3 + - bb9e4d4b-68f1-413f-970a-7d03018a00eb 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.6.1 (cp; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "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: - - Wed, 13 May 2026 10:14:28 GMT + - Tue, 02 Jun 2026 12:53:13 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d + - https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428 Pragma: - no-cache RequestId: - - 475c5cb9-3ef1-4b59-a24d-90efd2b83034 + - adeae743-f37d-4b12-8a94-3c49de1a0daf 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.6.1 (import; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (import; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:43 GMT + - Tue, 02 Jun 2026 13:26:01 GMT Pragma: - no-cache RequestId: - - dc154833-50f9-4164-b5cc-4c63fa1c3cbb + - 4a1e7683-1d4e-47ac-b24e-4748c12fea25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,34 +264,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (import; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (import; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "751c1f18-e2a1-4bb3-9bdf-a28f9358bf2b", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_4", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", - "type": "Lakehouse", "displayName": "fabcli000001_new_4", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "3cbbe46e-a566-47fc-b113-77d0bfc26481", - "type": "Notebook", "displayName": "fabcli000001_new_5", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -300,15 +355,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '542' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:43 GMT + - Tue, 02 Jun 2026 13:26:01 GMT Pragma: - no-cache RequestId: - - 76a7c326-31ab-4792-8cce-dae3c6b3d9ea + - aeab590e-f6b9-4b6a-90b9-6acea64f080f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -336,9 +391,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (import; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (import; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428 response: body: string: '' @@ -354,11 +409,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 10:19:44 GMT + - Tue, 02 Jun 2026 13:26:02 GMT Pragma: - no-cache RequestId: - - 606e1c36-85f8-4bd0-a42f-b651ec0c6bad + - 5ab24ff0-b3f3-484f-a9dd-2ccc7da46666 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Dashboard].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Dashboard].yaml index cc39702d..592ea74c 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Dashboard].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Dashboard].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2165' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:32 GMT + - Tue, 02 Jun 2026 13:23:50 GMT Pragma: - no-cache RequestId: - - ad578760-ddc3-4114-a17f-3ff7444f74c2 + - ca394c86-df62-4f69-b30b-079de07c2dbe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,58 +62,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -121,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:33 GMT + - Tue, 02 Jun 2026 13:23:51 GMT Pragma: - no-cache RequestId: - - 80be29c7-0b6d-43c0-bd99-f6b6d098d026 + - 8f28db5a-8c52-45a4-ac33-eaa4db9a9987 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,58 +185,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -215,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:35 GMT + - Tue, 02 Jun 2026 13:23:52 GMT Pragma: - no-cache RequestId: - - 93ab8520-54ea-44c8-beba-a804a6cb2107 + - a62e8b6e-7492-46b2-a962-18785b54c16a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Datamart].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Datamart].yaml index 640f6a31..888b9b17 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Datamart].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Datamart].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:35 GMT + - Tue, 02 Jun 2026 13:23:53 GMT Pragma: - no-cache RequestId: - - d3180291-bbf8-4455-9e04-a6c38f9ee515 + - c6d81fe9-68d5-4ad1-ae02-e22d79cd00b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,58 +62,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -121,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:36 GMT + - Tue, 02 Jun 2026 13:23:54 GMT Pragma: - no-cache RequestId: - - 2e19b97b-bd04-4170-a387-3886925e07c7 + - 97ca1de7-3f0a-4299-ac64-9e7ffe2e3c11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,58 +185,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -215,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:37 GMT + - Tue, 02 Jun 2026 13:23:55 GMT Pragma: - no-cache RequestId: - - a330b637-8e6b-41b9-9d68-a5c8cddd851e + - 8405a102-99bb-467b-b5ae-fef59a282f65 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MLExperiment].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MLExperiment].yaml index 0b7f8dd3..a23e7796 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MLExperiment].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MLExperiment].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:39 GMT + - Tue, 02 Jun 2026 13:23:58 GMT Pragma: - no-cache RequestId: - - 85531d92-aa5c-47cd-949f-0a341982ae3e + - 8a3bb478-8a8d-4f67-b630-8b0416bb9fc1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,58 +62,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -121,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:40 GMT + - Tue, 02 Jun 2026 13:24:00 GMT Pragma: - no-cache RequestId: - - c24bf780-bae9-4801-87da-d7343b7d7b17 + - dc01ffbf-f93e-4800-8c3c-d1ffd641a262 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,58 +185,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -215,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:40 GMT + - Tue, 02 Jun 2026 13:24:01 GMT Pragma: - no-cache RequestId: - - 53094c88-37e6-4515-9251-ba58158682dd + - 7009dfbd-4233-49ae-b760-e2120c0d57c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MLModel].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MLModel].yaml index 5a585d4b..a9cd524b 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MLModel].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MLModel].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:41 GMT + - Tue, 02 Jun 2026 13:24:01 GMT Pragma: - no-cache RequestId: - - 6fab8adc-1fe9-4073-b3b5-3aedbe18d57f + - 5b37fbf4-5909-4224-8caf-66e0395a8c18 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,58 +62,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -121,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:41 GMT + - Tue, 02 Jun 2026 13:24:02 GMT Pragma: - no-cache RequestId: - - e75fbc67-a7e7-406f-8fe3-30a064be5553 + - 7cdecd99-ef2b-400f-b80c-700d4b2b8155 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,58 +185,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -215,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:42 GMT + - Tue, 02 Jun 2026 13:24:03 GMT Pragma: - no-cache RequestId: - - 165018a5-3cd3-43a9-8e02-267cb5c31e8e + - 6322ff50-7b6c-4557-856e-ca5ce0060a45 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MirroredWarehouse].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MirroredWarehouse].yaml index 61771771..f6016305 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MirroredWarehouse].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[MirroredWarehouse].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:37 GMT + - Tue, 02 Jun 2026 13:23:56 GMT Pragma: - no-cache RequestId: - - 1d471551-f099-490d-889c-c05b437d67cf + - 2b4aed78-ed7c-443c-8796-4a328dee82d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,58 +62,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -121,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:38 GMT + - Tue, 02 Jun 2026 13:23:57 GMT Pragma: - no-cache RequestId: - - efaee0fc-efd6-4518-a5cb-68a318b62f20 + - b39409ed-00f5-44da-a8c5-61ffd2c29ec7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,58 +185,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -215,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:38 GMT + - Tue, 02 Jun 2026 13:23:58 GMT Pragma: - no-cache RequestId: - - a3736262-76e6-4245-86d5-bcb24b1cffa8 + - 88a684cf-14e9-4cd0-8838-522917ca04a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[PaginatedReport].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[PaginatedReport].yaml index 9f3550aa..e5791c6d 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[PaginatedReport].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[PaginatedReport].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:42 GMT + - Tue, 02 Jun 2026 13:24:04 GMT Pragma: - no-cache RequestId: - - 94a9ad1c-76cf-4d33-ac3c-fd55712e3d65 + - 3a512f51-6b1d-4d24-994f-dd7106197d18 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,58 +62,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -121,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:44 GMT + - Tue, 02 Jun 2026 13:24:05 GMT Pragma: - no-cache RequestId: - - 693dcce3-d76f-4dec-8927-d5138ac746c4 + - 0f2c0a63-b6e0-4ba3-9aa4-5a4fee8e33fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,58 +185,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -215,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:44 GMT + - Tue, 02 Jun 2026 13:24:06 GMT Pragma: - no-cache RequestId: - - 6cc6c77c-c2ed-4759-9dd2-9a615a034ef1 + - 64dd8fdf-d263-4f73-86a5-b5dd3d014e2e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[SQLEndpoint].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[SQLEndpoint].yaml index fa80772b..81664c82 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[SQLEndpoint].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[SQLEndpoint].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:45 GMT + - Tue, 02 Jun 2026 13:24:07 GMT Pragma: - no-cache RequestId: - - 8aa3674c-91cf-44bb-9299-3d9f2d539b31 + - 1e88cd01-a9fd-47a9-8bed-79c5a84ea7aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,58 +62,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -121,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:46 GMT + - Tue, 02 Jun 2026 13:24:08 GMT Pragma: - no-cache RequestId: - - 2b99dbff-2143-44d4-969b-67d0d5a22035 + - 19751a2e-ecc3-4c94-9449-4b42bc300bad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,58 +185,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -215,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:47 GMT + - Tue, 02 Jun 2026 13:24:08 GMT Pragma: - no-cache RequestId: - - 64906070-8d0c-440c-87cf-b98ae8fc4577 + - 759e95de-f115-4f50-9de3-1c50e81ff4b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Warehouse].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Warehouse].yaml index 2d9d4eea..7419dcaa 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Warehouse].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_fail[Warehouse].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:48 GMT + - Tue, 02 Jun 2026 13:24:10 GMT Pragma: - no-cache RequestId: - - cde59b5f-a852-4b7a-b0cb-f64439ada64c + - be30218c-1f73-4d91-986c-0c18fb1f8070 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,58 +62,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -121,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:48 GMT + - Tue, 02 Jun 2026 13:24:10 GMT Pragma: - no-cache RequestId: - - 322b5cd7-a03b-4a34-b153-c87d1a95047d + - 41ee802d-c7bd-4bf3-8fd0-f556221c9399 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,58 +185,87 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -215,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1083' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:43:49 GMT + - Tue, 02 Jun 2026 13:24:12 GMT Pragma: - no-cache RequestId: - - fae5121b-f237-48df-8315-386ff40b60fc + - 593cfe39-f59e-4e7e-8170-82526d7e6e44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[CosmosDBDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[CosmosDBDatabase].yaml index 373fa02b..d0519e9f 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[CosmosDBDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[CosmosDBDatabase].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:29 GMT + - Tue, 02 Jun 2026 13:16:42 GMT Pragma: - no-cache RequestId: - - 68cea5a6-d3bb-47e3-b690-2bf0bbba0df5 + - 373dd5c9-e746-4390-93e5-09d2b8049b76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,47 +62,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -110,15 +122,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '881' + - '1068' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:30 GMT + - Tue, 02 Jun 2026 13:16:43 GMT Pragma: - no-cache RequestId: - - 4daf01fd-6680-4dde-8d98-ec9639756295 + - 75b81bd6-a5e5-4826-abbe-878d14c4dd61 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -144,47 +156,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -193,15 +216,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '881' + - '1068' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:31 GMT + - Tue, 02 Jun 2026 13:16:45 GMT Pragma: - no-cache RequestId: - - 403e447c-5f08-4c97-bee2-5b3e5f2f945b + - 0c179df1-1288-455c-8b7e-1d5eec65187f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -216,7 +239,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "CosmosDBDatabase", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "CosmosDBDatabase", "folderId": + null}' headers: Accept: - '*/*' @@ -226,13 +250,12 @@ interactions: - keep-alive Content-Length: - '81' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/cosmosDbDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/cosmosDbDatabases response: body: string: 'null' @@ -248,15 +271,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:33 GMT + - Tue, 02 Jun 2026 13:16:46 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0e94b62d-92bb-40da-933f-d33db81529ae + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9014a934-b0ef-40ab-b4cd-e7018bef92aa Pragma: - no-cache RequestId: - - 451bd46f-2e53-451b-808a-223eefb3f978 + - a9d73a2f-f2d2-4604-af0f-227c45c48f98 Retry-After: - '20' Strict-Transport-Security: @@ -270,7 +293,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 0e94b62d-92bb-40da-933f-d33db81529ae + - 9014a934-b0ef-40ab-b4cd-e7018bef92aa status: code: 202 message: Accepted @@ -286,13 +309,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0e94b62d-92bb-40da-933f-d33db81529ae + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9014a934-b0ef-40ab-b4cd-e7018bef92aa response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:40:33.0042935", - "lastUpdatedTimeUtc": "2026-04-14T12:40:39.1134721", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:16:46.1670502", + "lastUpdatedTimeUtc": "2026-06-02T13:16:53.3980238", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -306,13 +329,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:53 GMT + - Tue, 02 Jun 2026 13:17:07 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0e94b62d-92bb-40da-933f-d33db81529ae/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9014a934-b0ef-40ab-b4cd-e7018bef92aa/result Pragma: - no-cache RequestId: - - 652f371a-de8e-402d-9ecf-0c070a1892dc + - 924dc754-605f-4a22-b2d0-6fdb377c7b09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -320,7 +343,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 0e94b62d-92bb-40da-933f-d33db81529ae + - 9014a934-b0ef-40ab-b4cd-e7018bef92aa status: code: 200 message: OK @@ -336,14 +359,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0e94b62d-92bb-40da-933f-d33db81529ae/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9014a934-b0ef-40ab-b4cd-e7018bef92aa/result response: body: - string: '{"id": "7c258877-94c5-43e8-9d43-cc6d7f98aef4", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "617f3007-2ceb-4661-8a3d-e2a43c3ce84f", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -354,11 +376,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:40:54 GMT + - Tue, 02 Jun 2026 13:17:08 GMT Pragma: - no-cache RequestId: - - 29d81d16-fa5d-4295-b5d5-6aaa0b1d469a + - f87affe5-2a0c-436b-964a-bcaf9308b90f Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -382,14 +404,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -398,15 +421,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:55 GMT + - Tue, 02 Jun 2026 13:17:08 GMT Pragma: - no-cache RequestId: - - 7501d91b-51b8-4609-afda-b586e7ba210a + - 33a01ae8-85b8-45f3-9554-44a90c27a27c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -432,52 +455,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "ad90affe-634c-452a-ae92-c111bff07d75", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7c258877-94c5-43e8-9d43-cc6d7f98aef4", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4c5b5f85-e61f-4c83-ab98-040790e8bc6e", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "617f3007-2ceb-4661-8a3d-e2a43c3ce84f", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -486,15 +519,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '957' + - '1142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:56 GMT + - Tue, 02 Jun 2026 13:17:09 GMT Pragma: - no-cache RequestId: - - 6b194728-3c93-4f5a-9568-005fcbfd7e82 + - 2cc4b459-6497-473d-a1a4-0f2247dd4532 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,14 +553,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7c258877-94c5-43e8-9d43-cc6d7f98aef4 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/617f3007-2ceb-4661-8a3d-e2a43c3ce84f response: body: - string: '{"id": "7c258877-94c5-43e8-9d43-cc6d7f98aef4", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "617f3007-2ceb-4661-8a3d-e2a43c3ce84f", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -536,17 +568,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:57 GMT + - Tue, 02 Jun 2026 13:17:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ffcd3d42-8a92-433b-85d3-2f653abbcf8f + - d8715d15-fd99-420a-85cc-e200ec2e6f7c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -574,9 +606,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7c258877-94c5-43e8-9d43-cc6d7f98aef4/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/617f3007-2ceb-4661-8a3d-e2a43c3ce84f/getDefinition response: body: string: 'null' @@ -592,13 +624,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:57 GMT + - Tue, 02 Jun 2026 13:17:11 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b0666f91-fcb4-47e8-97db-5de1e2f8645b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae67c373-a7ee-47b1-a1eb-f6a630b2f5c7 Pragma: - no-cache RequestId: - - a4a74951-f7e6-4616-abe8-40ddde3a4b91 + - 2b7e3a9f-7a17-428c-85b2-669b5f1f4c90 Retry-After: - '20' Strict-Transport-Security: @@ -612,7 +644,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b0666f91-fcb4-47e8-97db-5de1e2f8645b + - ae67c373-a7ee-47b1-a1eb-f6a630b2f5c7 status: code: 202 message: Accepted @@ -628,13 +660,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b0666f91-fcb4-47e8-97db-5de1e2f8645b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae67c373-a7ee-47b1-a1eb-f6a630b2f5c7 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:40:58.7406868", - "lastUpdatedTimeUtc": "2026-04-14T12:40:59.115746", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:17:12.4191629", + "lastUpdatedTimeUtc": "2026-06-02T13:17:13.2350041", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -644,17 +676,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:18 GMT + - Tue, 02 Jun 2026 13:17:33 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b0666f91-fcb4-47e8-97db-5de1e2f8645b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae67c373-a7ee-47b1-a1eb-f6a630b2f5c7/result Pragma: - no-cache RequestId: - - fae6324b-cfd3-4473-80d7-3a1208cbfb3f + - 1da5e041-d981-4f56-a97b-6f2c2c0af5cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -662,7 +694,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b0666f91-fcb4-47e8-97db-5de1e2f8645b + - ae67c373-a7ee-47b1-a1eb-f6a630b2f5c7 status: code: 200 message: OK @@ -678,13 +710,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b0666f91-fcb4-47e8-97db-5de1e2f8645b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae67c373-a7ee-47b1-a1eb-f6a630b2f5c7/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -696,11 +728,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:41:20 GMT + - Tue, 02 Jun 2026 13:17:33 GMT Pragma: - no-cache RequestId: - - 13e146d9-48fd-4130-a1d6-fb3f33e6df1e + - 556d0a27-beed-476a-b76d-f8048070f749 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -724,14 +756,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -740,15 +773,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:22 GMT + - Tue, 02 Jun 2026 13:17:34 GMT Pragma: - no-cache RequestId: - - b3e173db-2405-478c-9c93-e310331ac022 + - 6b03fe4c-8677-41a4-ac76-b245b11bf805 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -774,52 +807,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "ad90affe-634c-452a-ae92-c111bff07d75", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7c258877-94c5-43e8-9d43-cc6d7f98aef4", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4c5b5f85-e61f-4c83-ab98-040790e8bc6e", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "617f3007-2ceb-4661-8a3d-e2a43c3ce84f", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -828,15 +871,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '957' + - '1142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:22 GMT + - Tue, 02 Jun 2026 13:17:35 GMT Pragma: - no-cache RequestId: - - 8b54ea9f-fe26-4a67-a4ec-d46ead3087de + - 1ce6854b-ac24-4ba9-a87e-f33eaa91f7b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -862,52 +905,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "ad90affe-634c-452a-ae92-c111bff07d75", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7c258877-94c5-43e8-9d43-cc6d7f98aef4", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4c5b5f85-e61f-4c83-ab98-040790e8bc6e", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "617f3007-2ceb-4661-8a3d-e2a43c3ce84f", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -916,15 +969,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '957' + - '1142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:23 GMT + - Tue, 02 Jun 2026 13:17:36 GMT Pragma: - no-cache RequestId: - - c6287f4d-27d2-4e17-ba22-235d7f08cbd7 + - 5aa08342-e970-49a7-89b5-c10716283776 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -939,7 +992,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "CosmosDBDatabase", "folderId": null, "displayName": "fabcli000001_new_14", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiQ29zbW9zREJEYXRhYmFzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vQ29zbW9zREIvZGVmaW5pdGlvbi9Db3Ntb3NEQi8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAiY29udGFpbmVycyI6IFtdCn0=", "payloadType": "InlineBase64"}]}}' + body: '{"type": "CosmosDBDatabase", "folderId": null, "displayName": "fabcli000001_new_14", + "definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vQ29zbW9zREIvZGVmaW5pdGlvbi9Db3Ntb3NEQi8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAiY29udGFpbmVycyI6IFtdCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiQ29zbW9zREJEYXRhYmFzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -948,14 +1004,13 @@ interactions: Connection: - keep-alive Content-Length: - - '959' - + - '903' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -971,15 +1026,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:25 GMT + - Tue, 02 Jun 2026 13:17:39 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1206020c-e68e-427b-ad5d-71c5cdcfa641 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b078e25-69e8-4e7e-b1c4-437e4d27cdec Pragma: - no-cache RequestId: - - 3031f1e9-ae07-40f6-9bc8-ced10b801649 + - 03a71158-0508-48be-b756-6c6f10192922 Retry-After: - '20' Strict-Transport-Security: @@ -993,7 +1048,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 1206020c-e68e-427b-ad5d-71c5cdcfa641 + - 5b078e25-69e8-4e7e-b1c4-437e4d27cdec status: code: 202 message: Accepted @@ -1009,13 +1064,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1206020c-e68e-427b-ad5d-71c5cdcfa641 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b078e25-69e8-4e7e-b1c4-437e4d27cdec response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:41:24.6754484", - "lastUpdatedTimeUtc": "2026-04-14T12:41:34.4300691", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:17:38.3816657", + "lastUpdatedTimeUtc": "2026-06-02T13:17:48.2941202", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1029,13 +1084,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:46 GMT + - Tue, 02 Jun 2026 13:17:59 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1206020c-e68e-427b-ad5d-71c5cdcfa641/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b078e25-69e8-4e7e-b1c4-437e4d27cdec/result Pragma: - no-cache RequestId: - - 538ce545-bd6a-4602-b602-a7e1fd4924e6 + - 963c1b02-6d15-4970-ac82-a59735f1a5c5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1043,7 +1098,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 1206020c-e68e-427b-ad5d-71c5cdcfa641 + - 5b078e25-69e8-4e7e-b1c4-437e4d27cdec status: code: 200 message: OK @@ -1059,14 +1114,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1206020c-e68e-427b-ad5d-71c5cdcfa641/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b078e25-69e8-4e7e-b1c4-437e4d27cdec/result response: body: - string: '{"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1077,11 +1131,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:41:46 GMT + - Tue, 02 Jun 2026 13:18:00 GMT Pragma: - no-cache RequestId: - - 1ab7c92b-7835-41b3-aad9-6985b32dea15 + - 188e0a18-74d5-4236-b920-6ebd72b9634b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1105,14 +1159,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1121,15 +1176,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:46 GMT + - Tue, 02 Jun 2026 13:18:00 GMT Pragma: - no-cache RequestId: - - 7055b096-f3d8-4d5a-8e06-7ce149cb96ab + - 425ba117-64d0-4799-bf23-f18618755989 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1155,55 +1210,66 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "ad90affe-634c-452a-ae92-c111bff07d75", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7c258877-94c5-43e8-9d43-cc6d7f98aef4", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", - "type": "CosmosDBDatabase", "displayName": "fabcli000001_new_14", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4c5b5f85-e61f-4c83-ab98-040790e8bc6e", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "617f3007-2ceb-4661-8a3d-e2a43c3ce84f", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1212,15 +1278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1019' + - '1202' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:48 GMT + - Tue, 02 Jun 2026 13:18:01 GMT Pragma: - no-cache RequestId: - - b51acb45-ae6d-4e44-a664-a88bb183a736 + - 64f145ae-6c78-431b-969d-ebb97da42964 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1248,9 +1314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7c258877-94c5-43e8-9d43-cc6d7f98aef4 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/617f3007-2ceb-4661-8a3d-e2a43c3ce84f response: body: string: '' @@ -1266,11 +1332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:41:48 GMT + - Tue, 02 Jun 2026 13:18:02 GMT Pragma: - no-cache RequestId: - - 2795fd23-9747-46bc-bb4b-7d95654c6f7c + - 8c1275a1-be22-4fbe-863a-a6382fa1dd96 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DataPipeline].yaml index 9a7cf014..bf06b98c 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DataPipeline].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DataPipeline].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:09 GMT + - Tue, 02 Jun 2026 13:06:19 GMT Pragma: - no-cache RequestId: - - 19c500a0-7f22-4f04-8677-33eb73d439d1 + - 63182542-e40f-497d-a457-ee429be486c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,15 +62,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -78,15 +92,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '247' + - '475' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:10 GMT + - Tue, 02 Jun 2026 13:06:20 GMT Pragma: - no-cache RequestId: - - 64d7f50e-5e45-4abd-b6a8-33dbbc0df747 + - 0cfc9fe8-60ac-48cd-9b39-af85d16c0982 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,15 +126,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -129,15 +156,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '247' + - '475' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:10 GMT + - Tue, 02 Jun 2026 13:06:20 GMT Pragma: - no-cache RequestId: - - 2170abf3-764c-49da-a9bd-aa5bec0b6743 + - d42d9e8c-e09a-444b-8c96-856423b32077 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,18 +189,16 @@ interactions: - keep-alive Content-Length: - '77' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/dataPipelines response: body: - string: '{"id": "696bffe5-6a6c-4f22-8aba-354a4e1ed35b", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "5864a2e3-750d-4306-81c2-484dcea5767c", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -182,17 +207,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:15 GMT + - Tue, 02 Jun 2026 13:06:25 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 679ca7e9-d8f1-43e3-8af4-08b6a47279b8 + - c9a93df7-f2ca-4150-bf9c-3209e5dfdeea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -218,14 +243,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -234,15 +260,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:16 GMT + - Tue, 02 Jun 2026 13:06:26 GMT Pragma: - no-cache RequestId: - - c0355933-db63-42d5-9731-ea758c9ab4dc + - a163929d-4c37-4258-946f-c9b4dcfaef29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -268,17 +294,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "696bffe5-6a6c-4f22-8aba-354a4e1ed35b", "type": "DataPipeline", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "5864a2e3-750d-4306-81c2-484dcea5767c", + "type": "DataPipeline", "displayName": "fabcli000001", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -287,15 +326,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '303' + - '519' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:17 GMT + - Tue, 02 Jun 2026 13:06:27 GMT Pragma: - no-cache RequestId: - - 7c1990b9-042a-4cee-ae7a-cfe146625ba8 + - 7fef78a0-6780-4cd3-bde6-06c9e08c8fa7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -321,14 +360,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/696bffe5-6a6c-4f22-8aba-354a4e1ed35b + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5864a2e3-750d-4306-81c2-484dcea5767c response: body: - string: '{"id": "696bffe5-6a6c-4f22-8aba-354a4e1ed35b", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "5864a2e3-750d-4306-81c2-484dcea5767c", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -337,17 +375,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:17 GMT + - Tue, 02 Jun 2026 13:06:27 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 429ef8b3-76ef-4816-905e-b146fad6bb45 + - f327a916-e7a1-4042-aa9d-53383f85a3bc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -375,14 +413,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/696bffe5-6a6c-4f22-8aba-354a4e1ed35b/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5864a2e3-750d-4306-81c2-484dcea5767c/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -392,15 +430,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '458' + - '441' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:18 GMT + - Tue, 02 Jun 2026 13:06:29 GMT Pragma: - no-cache RequestId: - - 3c9eb4a4-c911-4a9a-90c2-2368e47b732d + - 9360adaf-a3f8-4efc-9ec1-0310612a7d1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -426,14 +464,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -442,15 +481,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:18 GMT + - Tue, 02 Jun 2026 13:06:29 GMT Pragma: - no-cache RequestId: - - 2c0bd853-8c43-4731-88f6-a4f92bb4a441 + - fe359416-ff92-485e-bf9e-82401a1774db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -476,17 +515,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "696bffe5-6a6c-4f22-8aba-354a4e1ed35b", "type": "DataPipeline", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "5864a2e3-750d-4306-81c2-484dcea5767c", + "type": "DataPipeline", "displayName": "fabcli000001", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -495,15 +547,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '303' + - '519' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:19 GMT + - Tue, 02 Jun 2026 13:06:30 GMT Pragma: - no-cache RequestId: - - dea3aec8-21c5-40b3-b204-ebfeb1c52f7b + - b2486fac-46cf-42c7-b3f8-7d9f8a201813 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -529,17 +581,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "696bffe5-6a6c-4f22-8aba-354a4e1ed35b", "type": "DataPipeline", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "5864a2e3-750d-4306-81c2-484dcea5767c", + "type": "DataPipeline", "displayName": "fabcli000001", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -548,15 +613,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '303' + - '519' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:20 GMT + - Tue, 02 Jun 2026 13:06:30 GMT Pragma: - no-cache RequestId: - - 57231e44-d42b-466d-aef1-30114c55e988 + - 3e03ba45-db8d-4fdf-bb5d-e5e8a099c3fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -571,7 +636,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "DataPipeline", "folderId": null, "displayName": "fabcli000001_new_4", "definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgImFjdGl2aXRpZXMiOiBbXQogICAgfQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGF0YVBpcGVsaW5lIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}]}}' + body: '{"type": "DataPipeline", "folderId": null, "displayName": "fabcli000001_new_4", + "definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgImFjdGl2aXRpZXMiOiBbXQogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGF0YVBpcGVsaW5lIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -580,19 +648,17 @@ interactions: Connection: - keep-alive Content-Length: - - '832' - + - '776' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", - "displayName": "fabcli000001_new_4", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", "type": "DataPipeline", + "displayName": "fabcli000001_new_4", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -601,17 +667,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:23 GMT + - Tue, 02 Jun 2026 13:06:35 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ca63cc5a-ae6a-4256-b885-1b6a3dfe03bd + - b1537ace-ca26-494f-b86e-90ef400155ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -637,14 +703,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -653,15 +720,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:24 GMT + - Tue, 02 Jun 2026 13:06:36 GMT Pragma: - no-cache RequestId: - - 60080cc2-0f5a-4906-a805-0bf003067cec + - a688fc77-5ed8-4ba8-a2c5-68320c53c5d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -687,19 +754,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "696bffe5-6a6c-4f22-8aba-354a4e1ed35b", "type": "DataPipeline", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "5864a2e3-750d-4306-81c2-484dcea5767c", + "type": "DataPipeline", "displayName": "fabcli000001", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -708,15 +788,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '336' + - '549' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:24 GMT + - Tue, 02 Jun 2026 13:06:37 GMT Pragma: - no-cache RequestId: - - 33c174f9-0768-41d4-91f7-db3d31f9ae96 + - a0bce016-1820-4f84-a933-12800b79f52a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -744,9 +824,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/696bffe5-6a6c-4f22-8aba-354a4e1ed35b + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5864a2e3-750d-4306-81c2-484dcea5767c response: body: string: '' @@ -762,11 +842,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:27:25 GMT + - Tue, 02 Jun 2026 13:06:37 GMT Pragma: - no-cache RequestId: - - 9253e9d0-908b-4167-86f3-2a92cd14c8c9 + - 7e399fa2-2a3e-4219-86a2-f35219a8ed07 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilderFlow].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilderFlow].yaml index e944fa29..7e1bd295 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilderFlow].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilderFlow].yaml @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:15 GMT + - Tue, 02 Jun 2026 13:20:45 GMT Pragma: - no-cache RequestId: - - 8090d851-4da7-4ebe-9e09-0f3e81586b6a + - b22199ca-6850-408d-ac45-266564a2eb20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,15 +64,68 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -81,15 +134,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '268' + - '1294' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:16 GMT + - Tue, 02 Jun 2026 13:20:47 GMT Pragma: - no-cache RequestId: - - 63033609-e3a8-4a53-a001-5c90a4a40595 + - 821488a3-fcf8-491b-a60c-66ea033fb7b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -117,15 +170,68 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -134,15 +240,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '268' + - '1294' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:16 GMT + - Tue, 02 Jun 2026 13:20:47 GMT Pragma: - no-cache RequestId: - - 12bb091d-d0bb-4297-84d1-99606f983d21 + - e5a0b273-e18f-4d75-81e9-bbe5783cbc9f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -173,7 +279,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/digitalTwinBuilders response: body: string: 'null' @@ -189,15 +295,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:19 GMT + - Tue, 02 Jun 2026 13:20:50 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0a2bd64-732b-4d02-8689-60d4d97f6e7b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1653ff60-ad42-493a-b9d3-2770558d3539 Pragma: - no-cache RequestId: - - 095f5a98-c8d7-4500-b6e1-651be17a6a49 + - b34c6ecd-3953-4f88-9f55-2ddaf207560f Retry-After: - '20' Strict-Transport-Security: @@ -211,7 +317,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d0a2bd64-732b-4d02-8689-60d4d97f6e7b + - 1653ff60-ad42-493a-b9d3-2770558d3539 status: code: 202 message: Accepted @@ -229,11 +335,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0a2bd64-732b-4d02-8689-60d4d97f6e7b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1653ff60-ad42-493a-b9d3-2770558d3539 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:16:18.4188867", - "lastUpdatedTimeUtc": "2026-05-13T10:16:24.9436508", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:20:49.032472", + "lastUpdatedTimeUtc": "2026-06-02T13:20:58.7948371", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -243,17 +349,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:40 GMT + - Tue, 02 Jun 2026 13:21:11 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0a2bd64-732b-4d02-8689-60d4d97f6e7b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1653ff60-ad42-493a-b9d3-2770558d3539/result Pragma: - no-cache RequestId: - - a692bfc5-f662-4adc-9891-6bcbac42834f + - 50533172-a4b8-4704-815d-5818beca0fc7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -261,7 +367,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d0a2bd64-732b-4d02-8689-60d4d97f6e7b + - 1653ff60-ad42-493a-b9d3-2770558d3539 status: code: 200 message: OK @@ -279,11 +385,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0a2bd64-732b-4d02-8689-60d4d97f6e7b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1653ff60-ad42-493a-b9d3-2770558d3539/result response: body: - string: '{"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -294,11 +400,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:16:40 GMT + - Tue, 02 Jun 2026 13:21:11 GMT Pragma: - no-cache RequestId: - - 643dd947-3ef0-433c-8637-74859cac3c4e + - a123a01b-a609-4cd0-b3f1-51da1d5592a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -313,7 +419,7 @@ interactions: - request: body: '{"displayName": "fabcli000001", "type": "DigitalTwinBuilderFlow", "folderId": null, "creationPayload": {"digitalTwinBuilderItemReference": {"referenceType": - "ById", "itemId": "517281fe-4793-422e-bfe0-4391b1a11a91", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}}}' + "ById", "itemId": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}}}' headers: Accept: - '*/*' @@ -328,11 +434,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/digitalTwinBuilderFlows + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/digitalTwinBuilderFlows response: body: - string: '{"id": "391f98c6-4b9c-49f5-9559-ba2820eb8acd", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "ed46aee2-1a75-48a6-a6fe-4e1c854b8103", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -341,17 +447,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:42 GMT + - Tue, 02 Jun 2026 13:21:14 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 19f5e686-9444-4210-b612-3755a704b812 + - 898e082b-418a-4ef6-9ca1-5f54be3589c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -383,7 +489,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -394,15 +500,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:43 GMT + - Tue, 02 Jun 2026 13:21:15 GMT Pragma: - no-cache RequestId: - - 124e290d-cf25-42c3-a29d-10bc378fd61c + - 99f5358e-3106-46be-8cff-b16c66dc65ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -430,26 +536,79 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "391f98c6-4b9c-49f5-9559-ba2820eb8acd", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "ed46aee2-1a75-48a6-a6fe-4e1c854b8103", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -458,15 +617,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '433' + - '1447' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:44 GMT + - Tue, 02 Jun 2026 13:21:15 GMT Pragma: - no-cache RequestId: - - c152c456-35df-4990-b253-50127f1e8284 + - 70f8d925-1f68-4bc5-8a50-16367034dce0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -494,11 +653,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/391f98c6-4b9c-49f5-9559-ba2820eb8acd + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ed46aee2-1a75-48a6-a6fe-4e1c854b8103 response: body: - string: '{"id": "391f98c6-4b9c-49f5-9559-ba2820eb8acd", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "ed46aee2-1a75-48a6-a6fe-4e1c854b8103", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -507,17 +666,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:45 GMT + - Tue, 02 Jun 2026 13:21:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 49c293b0-ad68-4631-b4df-8d55e710d100 + - 4eba4538-5680-42ba-8368-c317c503c486 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -547,7 +706,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/391f98c6-4b9c-49f5-9559-ba2820eb8acd/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ed46aee2-1a75-48a6-a6fe-4e1c854b8103/getDefinition response: body: string: 'null' @@ -563,13 +722,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:46 GMT + - Tue, 02 Jun 2026 13:21:17 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b034e311-3ff1-44dd-b5f8-0ff4a7e4eec1 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6c02ffb3-6b42-4db0-bd07-3b100ed7094e Pragma: - no-cache RequestId: - - 4ff2443e-5dd0-4449-b371-7bd349581e1b + - bd0bd67b-adca-41cf-a45b-fa03177cabd7 Retry-After: - '20' Strict-Transport-Security: @@ -583,7 +742,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b034e311-3ff1-44dd-b5f8-0ff4a7e4eec1 + - 6c02ffb3-6b42-4db0-bd07-3b100ed7094e status: code: 202 message: Accepted @@ -601,11 +760,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b034e311-3ff1-44dd-b5f8-0ff4a7e4eec1 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6c02ffb3-6b42-4db0-bd07-3b100ed7094e response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:16:46.8312174", - "lastUpdatedTimeUtc": "2026-05-13T10:16:47.2607502", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:21:17.7875649", + "lastUpdatedTimeUtc": "2026-06-02T13:21:18.1788958", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -619,13 +778,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:07 GMT + - Tue, 02 Jun 2026 13:21:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b034e311-3ff1-44dd-b5f8-0ff4a7e4eec1/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6c02ffb3-6b42-4db0-bd07-3b100ed7094e/result Pragma: - no-cache RequestId: - - c4b91808-8a4d-4693-b3df-a235f21c71a4 + - b711f7f1-9f2c-466e-99e3-5814e9b43dbe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -633,7 +792,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b034e311-3ff1-44dd-b5f8-0ff4a7e4eec1 + - 6c02ffb3-6b42-4db0-bd07-3b100ed7094e status: code: 200 message: OK @@ -651,10 +810,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b034e311-3ff1-44dd-b5f8-0ff4a7e4eec1/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6c02ffb3-6b42-4db0-bd07-3b100ed7094e/result response: body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiRGlnaXRhbFR3aW5CdWlsZGVySWQiOiAiNTE3MjgxZmUtNDc5My00MjJlLWJmZTAtNDM5MWIxYTExYTkxIiwNCiAgIk9wZXJhdGlvbklkcyI6IFtdLA0KICAiSXNPbkRlbWFuZCI6IGZhbHNlDQp9", + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiRGlnaXRhbFR3aW5CdWlsZGVySWQiOiAiNjAwNTQwYzItODBmOC00NTZhLWE0ZjYtZDhjMjdmZmY3YzY3IiwNCiAgIk9wZXJhdGlvbklkcyI6IFtdLA0KICAiSXNPbkRlbWFuZCI6IGZhbHNlDQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlckZsb3ciLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: @@ -667,11 +826,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:17:08 GMT + - Tue, 02 Jun 2026 13:21:38 GMT Pragma: - no-cache RequestId: - - c9fd4c8c-6a6e-434e-98f6-853b325ea77d + - 96b319ab-2571-4d57-8e4c-5f9d9cbeb418 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -701,7 +860,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -712,15 +871,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:09 GMT + - Tue, 02 Jun 2026 13:21:39 GMT Pragma: - no-cache RequestId: - - 02cd2279-896f-487d-b9f7-911c2a4fd5e0 + - 2577ba43-86c9-4c4d-b084-ccea34bcd55a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -748,26 +907,79 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "391f98c6-4b9c-49f5-9559-ba2820eb8acd", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "ed46aee2-1a75-48a6-a6fe-4e1c854b8103", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -776,15 +988,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '433' + - '1447' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:09 GMT + - Tue, 02 Jun 2026 13:21:41 GMT Pragma: - no-cache RequestId: - - 2c156a2e-d7fd-45fd-ad41-6a37ad92e1b4 + - a415a4fc-32d3-4c9d-b5af-054e7a779f88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -812,26 +1024,79 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "391f98c6-4b9c-49f5-9559-ba2820eb8acd", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "ed46aee2-1a75-48a6-a6fe-4e1c854b8103", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -840,15 +1105,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '433' + - '1447' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:12 GMT + - Tue, 02 Jun 2026 13:21:42 GMT Pragma: - no-cache RequestId: - - 8064f92f-1dce-439c-bec4-9367ac23a560 + - 0c9034a7-92bf-44d4-a85d-ff04ffcb3345 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -864,7 +1129,7 @@ interactions: message: OK - request: body: '{"type": "DigitalTwinBuilderFlow", "folderId": null, "displayName": "fabcli000001_new_17", - "definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIkRpZ2l0YWxUd2luQnVpbGRlcklkIjogIjUxNzI4MWZlLTQ3OTMtNDIyZS1iZmUwLTQzOTFiMWExMWE5MSIsCiAgICAiT3BlcmF0aW9uSWRzIjogW10sCiAgICAiSXNPbkRlbWFuZCI6IGZhbHNlCn0=", + "definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIkRpZ2l0YWxUd2luQnVpbGRlcklkIjogIjYwMDU0MGMyLTgwZjgtNDU2YS1hNGY2LWQ4YzI3ZmZmN2M2NyIsCiAgICAiT3BlcmF0aW9uSWRzIjogW10sCiAgICAiSXNPbkRlbWFuZCI6IGZhbHNlCn0=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGlnaXRhbFR3aW5CdWlsZGVyRmxvdyIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: @@ -875,13 +1140,13 @@ interactions: Connection: - keep-alive Content-Length: - - '880' + - '881' Content-Type: - application/json User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -897,15 +1162,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:14 GMT + - Tue, 02 Jun 2026 13:21:44 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/28592edf-e482-469c-bb5f-aa9ed0d93f11 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67c186af-e12f-4145-99fa-c01c38eb1de3 Pragma: - no-cache RequestId: - - b0e8a473-d2da-4886-aabd-b5300f1cc3ab + - 8de4d518-ad75-47cc-bb4d-7b705d8e276e Retry-After: - '20' Strict-Transport-Security: @@ -919,7 +1184,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 28592edf-e482-469c-bb5f-aa9ed0d93f11 + - 67c186af-e12f-4145-99fa-c01c38eb1de3 status: code: 202 message: Accepted @@ -937,11 +1202,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/28592edf-e482-469c-bb5f-aa9ed0d93f11 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67c186af-e12f-4145-99fa-c01c38eb1de3 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:17:13.8512198", - "lastUpdatedTimeUtc": "2026-05-13T10:17:17.3213548", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:21:43.1887014", + "lastUpdatedTimeUtc": "2026-06-02T13:21:46.8609225", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -955,13 +1220,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:35 GMT + - Tue, 02 Jun 2026 13:22:04 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/28592edf-e482-469c-bb5f-aa9ed0d93f11/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67c186af-e12f-4145-99fa-c01c38eb1de3/result Pragma: - no-cache RequestId: - - 2c5f00bd-1e92-4df8-9b6e-40384ddfeb48 + - 76af5aac-75ce-4d6b-94fb-122a840a4092 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -969,7 +1234,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 28592edf-e482-469c-bb5f-aa9ed0d93f11 + - 67c186af-e12f-4145-99fa-c01c38eb1de3 status: code: 200 message: OK @@ -987,11 +1252,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/28592edf-e482-469c-bb5f-aa9ed0d93f11/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/67c186af-e12f-4145-99fa-c01c38eb1de3/result response: body: - string: '{"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_new_17", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1002,11 +1267,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:17:36 GMT + - Tue, 02 Jun 2026 13:22:06 GMT Pragma: - no-cache RequestId: - - 752c3e03-4dfc-4847-a309-40064890d4b3 + - 58d64aec-1c0b-411b-9847-3a090c67faaf Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1036,7 +1301,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1047,15 +1312,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:37 GMT + - Tue, 02 Jun 2026 13:22:07 GMT Pragma: - no-cache RequestId: - - 3772583e-148b-499d-9b1d-808f380f34d8 + - fe7b8a2a-a89f-492f-8d17-e7262023b334 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1083,28 +1348,81 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "391f98c6-4b9c-49f5-9559-ba2820eb8acd", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "ed46aee2-1a75-48a6-a6fe-4e1c854b8103", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1113,15 +1431,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '464' + - '1477' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:38 GMT + - Tue, 02 Jun 2026 13:22:07 GMT Pragma: - no-cache RequestId: - - 4f4b85d0-46a1-4ebd-a49e-c42a990f3a30 + - 29cd87c0-4347-4eae-b634-86b90eea820a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1151,7 +1469,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/391f98c6-4b9c-49f5-9559-ba2820eb8acd + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ed46aee2-1a75-48a6-a6fe-4e1c854b8103 response: body: string: '' @@ -1167,11 +1485,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 10:17:39 GMT + - Tue, 02 Jun 2026 13:22:08 GMT Pragma: - no-cache RequestId: - - 5fd2cda4-becd-4381-b964-69490bfbb80a + - 12284556-3b28-45a6-87bd-09ab21a31eb8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilder].yaml index 6fa657a4..2e0b8314 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_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": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:29 GMT + - Tue, 02 Jun 2026 13:19:03 GMT Pragma: - no-cache RequestId: - - 39e17d06-955a-44d8-843a-d0d0ae9bcca5 + - eab7d21d-eb7e-4863-82f2-b1d4249bb6d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,10 +64,62 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -76,15 +128,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '1194' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:30 GMT + - Tue, 02 Jun 2026 13:19:03 GMT Pragma: - no-cache RequestId: - - c0dc1ba3-b364-480d-a2e3-5cea22b8b14b + - 011eaeb9-3a40-4de9-85bd-e041984b4cf9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,10 +164,62 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -124,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '1194' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:31 GMT + - Tue, 02 Jun 2026 13:19:04 GMT Pragma: - no-cache RequestId: - - a62c8717-d16b-4d78-b446-5a4163acc5a2 + - d2ea7352-bc67-4e48-a01d-761d63178679 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -163,7 +267,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/digitalTwinBuilders response: body: string: 'null' @@ -179,15 +283,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:34 GMT + - Tue, 02 Jun 2026 13:19:07 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7b1bd2d6-fb22-4d7e-b472-3ab4ec3a7f23 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66d910f3-e1d8-40cd-bb60-e516fc108e9c Pragma: - no-cache RequestId: - - 394a4cde-901b-43b6-9476-828a5916f192 + - 9f9800bb-894f-400a-a4d4-3c8dfbbe2ed0 Retry-After: - '20' Strict-Transport-Security: @@ -201,7 +305,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 7b1bd2d6-fb22-4d7e-b472-3ab4ec3a7f23 + - 66d910f3-e1d8-40cd-bb60-e516fc108e9c status: code: 202 message: Accepted @@ -219,11 +323,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7b1bd2d6-fb22-4d7e-b472-3ab4ec3a7f23 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66d910f3-e1d8-40cd-bb60-e516fc108e9c response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:14:32.9447653", - "lastUpdatedTimeUtc": "2026-05-13T10:14:41.7095983", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:19:05.7230838", + "lastUpdatedTimeUtc": "2026-06-02T13:19:16.1899724", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -233,17 +337,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:56 GMT + - Tue, 02 Jun 2026 13:19:29 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7b1bd2d6-fb22-4d7e-b472-3ab4ec3a7f23/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66d910f3-e1d8-40cd-bb60-e516fc108e9c/result Pragma: - no-cache RequestId: - - f9b9f738-b285-43d6-8924-116fed009c34 + - c19aa7c0-9c64-44cb-891b-7ed7ce3aeb03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -251,7 +355,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 7b1bd2d6-fb22-4d7e-b472-3ab4ec3a7f23 + - 66d910f3-e1d8-40cd-bb60-e516fc108e9c status: code: 200 message: OK @@ -269,11 +373,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7b1bd2d6-fb22-4d7e-b472-3ab4ec3a7f23/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66d910f3-e1d8-40cd-bb60-e516fc108e9c/result response: body: - string: '{"id": "196b2907-4e83-4b84-84ef-d62744189326", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "b758ebb1-e3bf-4cb4-9ab8-80efdce88d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +388,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:14:57 GMT + - Tue, 02 Jun 2026 13:19:29 GMT Pragma: - no-cache RequestId: - - 717b5a71-b376-4995-8e05-aad20021e3b5 + - 3f45f076-0e76-4efb-a64b-6fa8ba88031e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -318,7 +422,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -329,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:58 GMT + - Tue, 02 Jun 2026 13:19:29 GMT Pragma: - no-cache RequestId: - - 5585d9f4-1131-476f-9121-6b5cb9fd9ce0 + - 8f76bcdc-1ead-4627-a56e-129332727c78 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,17 +469,70 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "196b2907-4e83-4b84-84ef-d62744189326", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "b522572b-17f5-4580-89a8-4c815d5bf1f2", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b758ebb1-e3bf-4cb4-9ab8-80efdce88d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "74c9a6d1-38bd-4a70-b0b2-90c8f44b14be", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -384,15 +541,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '304' + - '1321' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:14:59 GMT + - Tue, 02 Jun 2026 13:19:31 GMT Pragma: - no-cache RequestId: - - e6892d92-15f4-4a35-b118-b8b08833c047 + - 138b13a0-2a1a-4b29-af48-3a50d527395e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -420,11 +577,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/196b2907-4e83-4b84-84ef-d62744189326 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b758ebb1-e3bf-4cb4-9ab8-80efdce88d75 response: body: - string: '{"id": "196b2907-4e83-4b84-84ef-d62744189326", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "b758ebb1-e3bf-4cb4-9ab8-80efdce88d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -437,13 +594,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:15:01 GMT + - Tue, 02 Jun 2026 13:19:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f4f5f175-e6fd-4991-8bfa-bd4051c0cf95 + - 58076b4d-8e6b-4471-bd96-f678563e351f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -473,7 +630,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/196b2907-4e83-4b84-84ef-d62744189326/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b758ebb1-e3bf-4cb4-9ab8-80efdce88d75/getDefinition response: body: string: 'null' @@ -489,13 +646,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:15:03 GMT + - Tue, 02 Jun 2026 13:19:33 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b2bc60ef-1546-4d26-a346-8c2f605b17cc + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cd83854a-59a3-4a8d-aa7b-c2dc3e36e055 Pragma: - no-cache RequestId: - - 1a1b7a93-c4d7-418b-ace7-780ce7afa878 + - bae20657-533e-4e7a-987a-75499cabb996 Retry-After: - '20' Strict-Transport-Security: @@ -509,7 +666,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b2bc60ef-1546-4d26-a346-8c2f605b17cc + - cd83854a-59a3-4a8d-aa7b-c2dc3e36e055 status: code: 202 message: Accepted @@ -527,11 +684,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b2bc60ef-1546-4d26-a346-8c2f605b17cc + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cd83854a-59a3-4a8d-aa7b-c2dc3e36e055 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:15:03.0581293", - "lastUpdatedTimeUtc": "2026-05-13T10:15:03.9743588", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:19:33.4494404", + "lastUpdatedTimeUtc": "2026-06-02T13:19:34.0806325", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -545,13 +702,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:15:23 GMT + - Tue, 02 Jun 2026 13:19:53 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b2bc60ef-1546-4d26-a346-8c2f605b17cc/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cd83854a-59a3-4a8d-aa7b-c2dc3e36e055/result Pragma: - no-cache RequestId: - - 5ee3d360-ffb3-471a-9c3c-e63ade63bc82 + - b8f3ce9f-8e34-486e-8929-0af32f151c9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -559,7 +716,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b2bc60ef-1546-4d26-a346-8c2f605b17cc + - cd83854a-59a3-4a8d-aa7b-c2dc3e36e055 status: code: 200 message: OK @@ -577,10 +734,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b2bc60ef-1546-4d26-a346-8c2f605b17cc/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cd83854a-59a3-4a8d-aa7b-c2dc3e36e055/result response: body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiZGE3NjlkYjItYjdlYy00ZDQ1LWIyMTUtNWZiZjZlMDRkNWMxIg0KfQ==", + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiZGYwZmVhYWYtMjc0NC00NzJjLWE1ZmYtNTEwM2NhNzRjMjNhIg0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: @@ -593,11 +750,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:15:24 GMT + - Tue, 02 Jun 2026 13:19:54 GMT Pragma: - no-cache RequestId: - - 8bf66c90-d8a0-489c-b02b-311329ce7d90 + - 1ba553ed-ceff-4077-83ae-af11a026b9ad Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -627,7 +784,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -638,15 +795,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:15:24 GMT + - Tue, 02 Jun 2026 13:19:56 GMT Pragma: - no-cache RequestId: - - e31430a1-4fbc-45bf-ab7f-d94d7d4ba371 + - 02580817-ee27-43ec-b815-4bfc96f16e7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -674,17 +831,70 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "196b2907-4e83-4b84-84ef-d62744189326", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "b522572b-17f5-4580-89a8-4c815d5bf1f2", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b758ebb1-e3bf-4cb4-9ab8-80efdce88d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "74c9a6d1-38bd-4a70-b0b2-90c8f44b14be", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -693,15 +903,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '304' + - '1321' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:15:26 GMT + - Tue, 02 Jun 2026 13:19:56 GMT Pragma: - no-cache RequestId: - - 6d353d6c-a2df-4557-a4fd-3d2a3a0e8b7b + - 9d6aa3ba-fa4c-4a36-8fae-8f38a6bfa93e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -729,17 +939,70 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "196b2907-4e83-4b84-84ef-d62744189326", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "b522572b-17f5-4580-89a8-4c815d5bf1f2", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b758ebb1-e3bf-4cb4-9ab8-80efdce88d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "74c9a6d1-38bd-4a70-b0b2-90c8f44b14be", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -748,15 +1011,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '304' + - '1321' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:15:27 GMT + - Tue, 02 Jun 2026 13:19:57 GMT Pragma: - no-cache RequestId: - - 8f57ae67-c3b2-4bcb-a72a-4a8595d0bb0a + - e0e505dd-9aea-4f28-b5e7-c3b9be20e527 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -772,7 +1035,7 @@ interactions: message: OK - request: body: '{"type": "DigitalTwinBuilder", "folderId": null, "displayName": "fabcli000001_new_16", - "definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIkxha2Vob3VzZUlkIjogImRhNzY5ZGIyLWI3ZWMtNGQ0NS1iMjE1LTVmYmY2ZTA0ZDVjMSIKfQ==", + "definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIkxha2Vob3VzZUlkIjogImRmMGZlYWFmLTI3NDQtNDcyYy1hNWZmLTUxMDNjYTc0YzIzYSIKfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGlnaXRhbFR3aW5CdWlsZGVyIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: @@ -783,13 +1046,13 @@ interactions: Connection: - keep-alive Content-Length: - - '796' + - '797' Content-Type: - application/json User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -805,15 +1068,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:15:29 GMT + - Tue, 02 Jun 2026 13:19:59 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/011c5cc0-94d1-4e44-9b6c-f244ce007b88 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b536623e-43b7-42fb-8fa9-0d07179e046d Pragma: - no-cache RequestId: - - 6988c2dc-5654-461f-8eeb-ec33199d3c6f + - 1494b0a1-0cd1-465a-bf6d-83882f62f1f4 Retry-After: - '20' Strict-Transport-Security: @@ -827,7 +1090,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 011c5cc0-94d1-4e44-9b6c-f244ce007b88 + - b536623e-43b7-42fb-8fa9-0d07179e046d status: code: 202 message: Accepted @@ -845,11 +1108,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/011c5cc0-94d1-4e44-9b6c-f244ce007b88 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b536623e-43b7-42fb-8fa9-0d07179e046d response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-05-13T10:15:28.3770266", - "lastUpdatedTimeUtc": "2026-05-13T10:15:28.3770266", "percentComplete": null, + string: '{"status": "Running", "createdTimeUtc": "2026-06-02T13:19:58.9735841", + "lastUpdatedTimeUtc": "2026-06-02T13:19:58.9735841", "percentComplete": null, "error": null}' headers: Access-Control-Expose-Headers: @@ -859,17 +1122,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '122' + - '124' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:15:49 GMT + - Tue, 02 Jun 2026 13:20:20 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/011c5cc0-94d1-4e44-9b6c-f244ce007b88 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b536623e-43b7-42fb-8fa9-0d07179e046d Pragma: - no-cache RequestId: - - 5092e07c-f968-43ad-a196-31794ffe1498 + - e0090728-cbe8-45cd-9a51-d5a10aaf3654 Retry-After: - '20' Strict-Transport-Security: @@ -879,7 +1142,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 011c5cc0-94d1-4e44-9b6c-f244ce007b88 + - b536623e-43b7-42fb-8fa9-0d07179e046d status: code: 200 message: OK @@ -897,11 +1160,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/011c5cc0-94d1-4e44-9b6c-f244ce007b88 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b536623e-43b7-42fb-8fa9-0d07179e046d response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:15:28.3770266", - "lastUpdatedTimeUtc": "2026-05-13T10:15:58.931447", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:19:58.9735841", + "lastUpdatedTimeUtc": "2026-06-02T13:20:29.6949908", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -911,17 +1174,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:10 GMT + - Tue, 02 Jun 2026 13:20:41 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/011c5cc0-94d1-4e44-9b6c-f244ce007b88/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b536623e-43b7-42fb-8fa9-0d07179e046d/result Pragma: - no-cache RequestId: - - 0e43b065-b9a4-44c4-bff3-3d62deae73a1 + - a0bd9001-7dc7-48a2-9f79-0d3c4c255c21 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -929,7 +1192,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 011c5cc0-94d1-4e44-9b6c-f244ce007b88 + - b536623e-43b7-42fb-8fa9-0d07179e046d status: code: 200 message: OK @@ -947,11 +1210,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/011c5cc0-94d1-4e44-9b6c-f244ce007b88/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b536623e-43b7-42fb-8fa9-0d07179e046d/result response: body: - string: '{"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -962,11 +1225,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:16:11 GMT + - Tue, 02 Jun 2026 13:20:41 GMT Pragma: - no-cache RequestId: - - f362dfec-ecae-488f-abeb-9fc374e4328f + - c2d0ad68-db30-4254-8c45-5e04103db44b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -996,7 +1259,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1007,15 +1270,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:12 GMT + - Tue, 02 Jun 2026 13:20:43 GMT Pragma: - no-cache RequestId: - - 11e5eb87-bdfa-4d3d-aef3-4dfb757e6b3c + - 64137617-9525-4822-97d4-64e32412d5a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1043,19 +1306,72 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "196b2907-4e83-4b84-84ef-d62744189326", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "b522572b-17f5-4580-89a8-4c815d5bf1f2", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b758ebb1-e3bf-4cb4-9ab8-80efdce88d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "74c9a6d1-38bd-4a70-b0b2-90c8f44b14be", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1064,15 +1380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '336' + - '1354' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:16:13 GMT + - Tue, 02 Jun 2026 13:20:43 GMT Pragma: - no-cache RequestId: - - c4bf4e72-b8d6-4503-ab5a-4d3f59bda9fe + - 2b985025-4135-4dc5-b40c-4c3607061e1d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1102,7 +1418,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/196b2907-4e83-4b84-84ef-d62744189326 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b758ebb1-e3bf-4cb4-9ab8-80efdce88d75 response: body: string: '' @@ -1118,11 +1434,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 10:16:14 GMT + - Tue, 02 Jun 2026 13:20:44 GMT Pragma: - no-cache RequestId: - - 0a9f927a-8078-4e7b-a6e1-c2988c59836b + - 209e8b53-736e-43bd-b5e5-3e02d7b50f21 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Environment].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Environment].yaml new file mode 100644 index 00000000..2df5ec36 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Environment].yaml @@ -0,0 +1,1406 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '3022' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:22:51 GMT + Pragma: + - no-cache + RequestId: + - 9a58d02a-beb6-4cd0-9be4-9b4edf5b4794 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items + response: + body: + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1516' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:22:52 GMT + Pragma: + - no-cache + RequestId: + - 315b7cb2-afc4-4c13-a71a-215e486ba52d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items + response: + body: + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1516' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:22:53 GMT + Pragma: + - no-cache + RequestId: + - f016ea64-eb28-4f6c-a524-bae6b6373bb1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "type": "Environment", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/environments + response: + body: + string: '{"id": "dab007ba-9ddc-4978-a2ee-717fffbf9386", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:22:55 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 1a0d4f04-31d5-4dca-8906-ce76393768e2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '3022' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:22:56 GMT + Pragma: + - no-cache + RequestId: + - 47dc9866-0407-4554-8e28-ee0d229b90d4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items + response: + body: + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "dab007ba-9ddc-4978-a2ee-717fffbf9386", + "type": "Environment", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1560' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:22:58 GMT + Pragma: + - no-cache + RequestId: + - 62452e55-f7f8-484c-9523-bb73a3e080ea + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/dab007ba-9ddc-4978-a2ee-717fffbf9386 + response: + body: + string: '{"id": "dab007ba-9ddc-4978-a2ee-717fffbf9386", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:22:58 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 964962a6-c6a8-4575-88ef-46302ad6b946 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/dab007ba-9ddc-4978-a2ee-717fffbf9386/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, 02 Jun 2026 13:22:59 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/718ff35d-9eba-4a03-826c-6bcffafddc87 + Pragma: + - no-cache + RequestId: + - 6fcd9cf6-6f9c-45af-ac29-cc25cc9ebf06 + 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: + - 718ff35d-9eba-4a03-826c-6bcffafddc87 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/718ff35d-9eba-4a03-826c-6bcffafddc87 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:22:59.7712449", + "lastUpdatedTimeUtc": "2026-06-02T13:22:59.9379242", "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, 02 Jun 2026 13:23:19 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/718ff35d-9eba-4a03-826c-6bcffafddc87/result + Pragma: + - no-cache + RequestId: + - 06d9c010-6d30-47eb-8fb9-89576301aa33 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 718ff35d-9eba-4a03-826c-6bcffafddc87 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/718ff35d-9eba-4a03-826c-6bcffafddc87/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 13:23:21 GMT + Pragma: + - no-cache + RequestId: + - 4e772412-7142-416a-96b4-361c432c9bc6 + 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.6.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": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '3022' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:23:22 GMT + Pragma: + - no-cache + RequestId: + - 291f19fc-40e4-47fe-9b5a-eeb03ca707f9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items + response: + body: + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "dab007ba-9ddc-4978-a2ee-717fffbf9386", + "type": "Environment", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1560' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:23:22 GMT + Pragma: + - no-cache + RequestId: + - 0407ad64-258c-4b22-9326-56478a9cbdb1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items + response: + body: + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "dab007ba-9ddc-4978-a2ee-717fffbf9386", + "type": "Environment", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1560' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:23:24 GMT + Pragma: + - no-cache + RequestId: + - 822e99c8-30c2-491f-82c0-938c3988e2d4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"type": "Environment", "folderId": null, "displayName": "fabcli000001_new_19", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRW52aXJvbm1lbnQiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}]}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1011' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/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, 02 Jun 2026 13:23:25 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eb469eae-74da-4c21-b826-f4e52e2a21aa + Pragma: + - no-cache + RequestId: + - 0c598026-77a5-4035-9b8a-9eef478e6cb6 + 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: + - eb469eae-74da-4c21-b826-f4e52e2a21aa + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eb469eae-74da-4c21-b826-f4e52e2a21aa + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:23:25.28743", + "lastUpdatedTimeUtc": "2026-06-02T13:23:28.3711035", "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: + - '128' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:23:46 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eb469eae-74da-4c21-b826-f4e52e2a21aa/result + Pragma: + - no-cache + RequestId: + - 8d1a4e8f-636b-4dec-956d-4c0946769fd0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - eb469eae-74da-4c21-b826-f4e52e2a21aa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/eb469eae-74da-4c21-b826-f4e52e2a21aa/result + response: + body: + string: '{"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", "type": "Environment", + "displayName": "fabcli000001_new_19", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 02 Jun 2026 13:23:47 GMT + Pragma: + - no-cache + RequestId: + - a548ab87-8dab-4253-ac97-833922113e7d + 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.6.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": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '3022' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:23:47 GMT + Pragma: + - no-cache + RequestId: + - 2d919543-01f5-486d-be42-a0d07ab3b854 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items + response: + body: + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "dab007ba-9ddc-4978-a2ee-717fffbf9386", + "type": "Environment", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '1591' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:23:48 GMT + Pragma: + - no-cache + RequestId: + - f9d96452-2ea4-43d6-a713-199d6f9645f8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/dab007ba-9ddc-4978-a2ee-717fffbf9386 + 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, 02 Jun 2026 13:23:50 GMT + Pragma: + - no-cache + RequestId: + - 7b6390db-6f26-4eb3-81b2-2f7c23e0df1d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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_import/test_import_create_new_item_success[Eventhouse].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Eventhouse].yaml index fd51d108..f0de4181 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Eventhouse].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Eventhouse].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:08 GMT + - Tue, 02 Jun 2026 13:11:28 GMT Pragma: - no-cache RequestId: - - ce8018c7-ebef-451c-a6b1-b5b8d7585328 + - 57379444-ff55-486b-8800-397dee408f5b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,32 +62,44 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -95,15 +108,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '590' + - '798' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:09 GMT + - Tue, 02 Jun 2026 13:11:28 GMT Pragma: - no-cache RequestId: - - ebefc476-ce66-48ef-9a04-f4fde25a0b0a + - 691eb232-6040-4612-8a68-05063c5f1ef0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -129,32 +142,44 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -163,15 +188,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '590' + - '798' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:10 GMT + - Tue, 02 Jun 2026 13:11:30 GMT Pragma: - no-cache RequestId: - - ab51d7f1-a80e-4844-8b23-e5cb144f1bb1 + - 5aceb0ca-77d6-4057-90b5-a81a3c472a02 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -196,18 +221,16 @@ interactions: - keep-alive Content-Length: - '75' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/eventhouses + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/eventhouses response: body: - string: '{"id": "7ab4bd4e-1b57-4049-948c-a49993590380", "type": "Eventhouse", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "ec46112a-84ea-465a-94ce-131a05b62b38", "type": "Eventhouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -216,17 +239,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:13 GMT + - Tue, 02 Jun 2026 13:11:33 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 892071b7-21b9-4d40-96e0-34b937a0fc1d + - f2e1499e-d030-4aed-8d31-b3fe81b06f5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -252,14 +275,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -268,15 +292,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:14 GMT + - Tue, 02 Jun 2026 13:11:34 GMT Pragma: - no-cache RequestId: - - ec6574bb-205f-4011-a38e-2aa9fa83eb80 + - f72c2400-a4cb-4e1e-8a3b-d2aa0bec8921 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -302,36 +326,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7ab4bd4e-1b57-4049-948c-a49993590380", "type": "Eventhouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ce0526d7-d198-4a35-a21f-6fa5cde692a5", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ec46112a-84ea-465a-94ce-131a05b62b38", "type": "Eventhouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2d94aefa-d691-4c51-840b-04df7c3fb5c6", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "fabcli000001", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -340,15 +376,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '657' + - '867' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:15 GMT + - Tue, 02 Jun 2026 13:11:36 GMT Pragma: - no-cache RequestId: - - c93230b6-9014-4b74-8812-08faac0c438e + - 5db1a5fd-fa9f-40e3-b2c6-3ed4440bb8c7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -374,14 +410,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7ab4bd4e-1b57-4049-948c-a49993590380 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ec46112a-84ea-465a-94ce-131a05b62b38 response: body: - string: '{"id": "7ab4bd4e-1b57-4049-948c-a49993590380", "type": "Eventhouse", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "ec46112a-84ea-465a-94ce-131a05b62b38", "type": "Eventhouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -390,17 +425,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:16 GMT + - Tue, 02 Jun 2026 13:11:35 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d891329e-0260-4495-a8d9-7804cf21d913 + - 1d8cdf28-6cd5-410a-9a59-a2cbdbda75e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -428,9 +463,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7ab4bd4e-1b57-4049-948c-a49993590380/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ec46112a-84ea-465a-94ce-131a05b62b38/getDefinition response: body: string: 'null' @@ -446,13 +481,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:16 GMT + - Tue, 02 Jun 2026 13:11:37 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/41f5009a-c9c0-47c0-b88b-830a73074759 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48170a58-56d5-48aa-b72e-37bb4b7cf9fc Pragma: - no-cache RequestId: - - 1ec01419-074c-4a5e-b775-c608a535f82e + - 258338de-8b56-4cf3-98a0-b4e6dda0bc64 Retry-After: - '20' Strict-Transport-Security: @@ -466,7 +501,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 41f5009a-c9c0-47c0-b88b-830a73074759 + - 48170a58-56d5-48aa-b72e-37bb4b7cf9fc status: code: 202 message: Accepted @@ -482,13 +517,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/41f5009a-c9c0-47c0-b88b-830a73074759 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48170a58-56d5-48aa-b72e-37bb4b7cf9fc response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:32:17.6632546", - "lastUpdatedTimeUtc": "2026-04-14T12:32:26.5119558", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:11:37.9677345", + "lastUpdatedTimeUtc": "2026-06-02T13:11:56.8862134", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -498,17 +533,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:38 GMT + - Tue, 02 Jun 2026 13:11:58 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/41f5009a-c9c0-47c0-b88b-830a73074759/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48170a58-56d5-48aa-b72e-37bb4b7cf9fc/result Pragma: - no-cache RequestId: - - 0742219c-92ef-4129-9b23-959d78988898 + - 4acf56aa-9287-4feb-9944-29adfda8ad8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -516,7 +551,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 41f5009a-c9c0-47c0-b88b-830a73074759 + - 48170a58-56d5-48aa-b72e-37bb4b7cf9fc status: code: 200 message: OK @@ -532,13 +567,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/41f5009a-c9c0-47c0-b88b-830a73074759/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/48170a58-56d5-48aa-b72e-37bb4b7cf9fc/result response: body: string: '{"definition": {"parts": [{"path": "EventhouseProperties.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkV2ZW50aG91c2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkV2ZW50aG91c2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -550,11 +585,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:32:39 GMT + - Tue, 02 Jun 2026 13:11:59 GMT Pragma: - no-cache RequestId: - - cc5c1df9-9031-4f80-9d17-3c92627ccbe3 + - 44948cbd-e2f3-43f0-ae5b-1f8e19df32ee Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -578,14 +613,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -594,15 +630,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:39 GMT + - Tue, 02 Jun 2026 13:12:00 GMT Pragma: - no-cache RequestId: - - fe334dd7-5b1d-40eb-89b6-031b0946cc12 + - 4843352e-8e11-4196-8e3d-a294f27b6ad0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -628,36 +664,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7ab4bd4e-1b57-4049-948c-a49993590380", "type": "Eventhouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ce0526d7-d198-4a35-a21f-6fa5cde692a5", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ec46112a-84ea-465a-94ce-131a05b62b38", "type": "Eventhouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2d94aefa-d691-4c51-840b-04df7c3fb5c6", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "fabcli000001", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -666,15 +714,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '657' + - '867' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:40 GMT + - Tue, 02 Jun 2026 13:12:00 GMT Pragma: - no-cache RequestId: - - ef5d6e34-88e1-4486-9a81-b00b99aeb1cc + - 22318eeb-5f9d-4531-83a4-1b84454402ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -700,36 +748,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7ab4bd4e-1b57-4049-948c-a49993590380", "type": "Eventhouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ce0526d7-d198-4a35-a21f-6fa5cde692a5", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ec46112a-84ea-465a-94ce-131a05b62b38", "type": "Eventhouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2d94aefa-d691-4c51-840b-04df7c3fb5c6", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "fabcli000001", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -738,15 +798,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '657' + - '867' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:41 GMT + - Tue, 02 Jun 2026 13:12:02 GMT Pragma: - no-cache RequestId: - - 771f094e-fcdc-432c-92ec-64a36c1299a1 + - 9c34ae0b-8db6-4d1d-84b2-d160298f18fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -761,7 +821,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Eventhouse", "folderId": null, "displayName": "fabcli000001_new_9", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRXZlbnRob3VzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "EventhouseProperties.json", "payload": "e30=", "payloadType": "InlineBase64"}]}}' + body: '{"type": "Eventhouse", "folderId": null, "displayName": "fabcli000001_new_9", + "definition": {"parts": [{"path": "EventhouseProperties.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRXZlbnRob3VzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -770,14 +833,13 @@ interactions: Connection: - keep-alive Content-Length: - - '762' - + - '706' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -793,15 +855,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:43 GMT + - Tue, 02 Jun 2026 13:12:03 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5de3e97f-0a97-47f4-8089-d6a63e404d7d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/550a9d26-3a96-42f2-91bd-6a962177892f Pragma: - no-cache RequestId: - - 007af9cc-a1f1-482e-a3ce-f651ea7a3025 + - b8700a53-4eb3-4833-a0bd-09bcd164bfae Retry-After: - '20' Strict-Transport-Security: @@ -815,7 +877,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 5de3e97f-0a97-47f4-8089-d6a63e404d7d + - 550a9d26-3a96-42f2-91bd-6a962177892f status: code: 202 message: Accepted @@ -831,13 +893,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5de3e97f-0a97-47f4-8089-d6a63e404d7d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/550a9d26-3a96-42f2-91bd-6a962177892f response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:32:42.6955173", - "lastUpdatedTimeUtc": "2026-04-14T12:32:45.8265903", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:12:03.4002558", + "lastUpdatedTimeUtc": "2026-06-02T13:12:06.6429742", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -847,17 +909,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:33:03 GMT + - Tue, 02 Jun 2026 13:12:24 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5de3e97f-0a97-47f4-8089-d6a63e404d7d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/550a9d26-3a96-42f2-91bd-6a962177892f/result Pragma: - no-cache RequestId: - - a04b07e6-e863-498c-9f1f-ab96a53e02ab + - 5b499029-8964-46e7-a9e7-011fe5a7b7b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -865,7 +927,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 5de3e97f-0a97-47f4-8089-d6a63e404d7d + - 550a9d26-3a96-42f2-91bd-6a962177892f status: code: 200 message: OK @@ -881,14 +943,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5de3e97f-0a97-47f4-8089-d6a63e404d7d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/550a9d26-3a96-42f2-91bd-6a962177892f/result response: body: - string: '{"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", - "displayName": "fabcli000001_new_9", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", + "displayName": "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -899,11 +960,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:33:04 GMT + - Tue, 02 Jun 2026 13:12:25 GMT Pragma: - no-cache RequestId: - - 3896f060-4b5a-4c40-ba4e-ad191f96a5d6 + - 41aa1ab6-492a-40e8-a6f9-9dcc6aa9f629 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -927,14 +988,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -943,15 +1005,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:33:05 GMT + - Tue, 02 Jun 2026 13:12:26 GMT Pragma: - no-cache RequestId: - - e5700333-576a-45cd-986c-2ece63ec3890 + - 0d6be572-ca71-4c7e-b24c-a1bc57f54da1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -977,38 +1039,50 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7ab4bd4e-1b57-4049-948c-a49993590380", "type": "Eventhouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ce0526d7-d198-4a35-a21f-6fa5cde692a5", "type": "KQLDatabase", "displayName": - "fabcli000001", "description": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ec46112a-84ea-465a-94ce-131a05b62b38", "type": "Eventhouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2d94aefa-d691-4c51-840b-04df7c3fb5c6", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "fabcli000001", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1017,15 +1091,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '690' + - '897' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:33:06 GMT + - Tue, 02 Jun 2026 13:12:26 GMT Pragma: - no-cache RequestId: - - 54bb01bc-6359-47a9-9d3b-afe712d0db40 + - 103b96f0-8707-4f46-8f1d-4bc5c9cae936 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1053,9 +1127,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7ab4bd4e-1b57-4049-948c-a49993590380 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ec46112a-84ea-465a-94ce-131a05b62b38 response: body: string: '' @@ -1071,11 +1145,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:33:07 GMT + - Tue, 02 Jun 2026 13:12:27 GMT Pragma: - no-cache RequestId: - - ee028961-677a-46f6-a24e-36b4d464d6a6 + - bd20ec74-2b87-49b7-978e-a12e2aafb1ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDashboard].yaml index caece0e4..b65cd4a3 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDashboard].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDashboard].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:41 GMT + - Tue, 02 Jun 2026 13:14:05 GMT Pragma: - no-cache RequestId: - - 13eecd5c-d857-478f-94f5-995ed49502bf + - 77d538ea-f9d7-4e40-90d6-99edb1502846 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,41 +62,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -104,15 +116,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '763' + - '957' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:41 GMT + - Tue, 02 Jun 2026 13:14:05 GMT Pragma: - no-cache RequestId: - - 9ee98f3b-4f91-4443-a17e-b382eabf6b5c + - e8613eff-7bcc-4b5f-bc2e-ed3c88a18383 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -138,41 +150,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -181,15 +204,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '763' + - '957' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:43 GMT + - Tue, 02 Jun 2026 13:14:06 GMT Pragma: - no-cache RequestId: - - de2dfea2-84f9-41a2-8e8a-57e5028741be + - 46e4c536-c10a-44ad-a6a7-7fa5ed4e08d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,18 +237,16 @@ interactions: - keep-alive Content-Length: - '77' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/kqlDashboards + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/kqlDashboards response: body: - string: '{"id": "567d406d-c923-479b-aaf7-646acd8e2ff1", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "2df73074-b9a3-42d8-b499-0508c3b82015", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -234,17 +255,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:44 GMT + - Tue, 02 Jun 2026 13:14:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9582518d-e325-4d58-b785-e64566f7d592 + - 1690143d-d7b0-4cbb-9cf4-d7f557e9a05a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -270,14 +291,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -286,15 +308,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:45 GMT + - Tue, 02 Jun 2026 13:14:08 GMT Pragma: - no-cache RequestId: - - 87d1824c-0cd6-4756-a34f-53efde3d2f85 + - d6dde244-3b2d-4bf0-8c0a-979b92efa3da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -320,43 +342,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "567d406d-c923-479b-aaf7-646acd8e2ff1", "type": "KQLDashboard", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2df73074-b9a3-42d8-b499-0508c3b82015", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -365,15 +398,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '806' + - '1000' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:46 GMT + - Tue, 02 Jun 2026 13:14:09 GMT Pragma: - no-cache RequestId: - - 052225bd-4c0a-4245-b51a-1b40bea32bed + - 463a4b71-4126-452c-af5a-e0975215355f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -399,14 +432,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/567d406d-c923-479b-aaf7-646acd8e2ff1 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/2df73074-b9a3-42d8-b499-0508c3b82015 response: body: - string: '{"id": "567d406d-c923-479b-aaf7-646acd8e2ff1", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "2df73074-b9a3-42d8-b499-0508c3b82015", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -415,17 +447,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:46 GMT + - Tue, 02 Jun 2026 13:14:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9d918079-2648-4c5a-ac3d-6dc55e29b8c0 + - f026ae6d-6de6-41e5-bcbc-5a09b376d3e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -453,13 +485,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/567d406d-c923-479b-aaf7-646acd8e2ff1/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/2df73074-b9a3-42d8-b499-0508c3b82015/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeDashboard.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -469,15 +501,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '433' + - '407' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:48 GMT + - Tue, 02 Jun 2026 13:14:10 GMT Pragma: - no-cache RequestId: - - b27b9817-4055-4519-85b4-68bceb5640e5 + - 7f1d08a6-174e-4a3d-a136-862532a4acb4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -503,14 +535,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -519,15 +552,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:48 GMT + - Tue, 02 Jun 2026 13:14:11 GMT Pragma: - no-cache RequestId: - - 20d4a195-4296-4278-b2ec-83d5ab0794a4 + - 4b51feb4-1d75-4313-aa55-29c38ad59325 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -553,43 +586,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "567d406d-c923-479b-aaf7-646acd8e2ff1", "type": "KQLDashboard", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2df73074-b9a3-42d8-b499-0508c3b82015", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -598,15 +642,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '806' + - '1000' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:49 GMT + - Tue, 02 Jun 2026 13:14:12 GMT Pragma: - no-cache RequestId: - - 7bf9f852-1148-4f2e-bb5d-7d067f234bd6 + - 9d830b5b-4132-4889-9eae-d250ee7c4cd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -632,43 +676,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "567d406d-c923-479b-aaf7-646acd8e2ff1", "type": "KQLDashboard", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2df73074-b9a3-42d8-b499-0508c3b82015", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -677,15 +732,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '806' + - '1000' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:50 GMT + - Tue, 02 Jun 2026 13:14:14 GMT Pragma: - no-cache RequestId: - - 13b4e32c-d117-44c5-b883-687d443041bc + - abfcb04d-5cce-40a6-ba76-74099ec5d69d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -700,7 +755,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "KQLDashboard", "folderId": null, "displayName": "fabcli000001_new_12", "definition": {"parts": [{"path": "RealTimeDashboard.json", "payload": "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMRGFzaGJvYXJkIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}]}}' + body: '{"type": "KQLDashboard", "folderId": null, "displayName": "fabcli000001_new_12", + "definition": {"parts": [{"path": "RealTimeDashboard.json", "payload": "e30=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMRGFzaGJvYXJkIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -709,19 +767,17 @@ interactions: Connection: - keep-alive Content-Length: - - '766' - + - '710' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"id": "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", - "displayName": "fabcli000001_new_12", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", + "displayName": "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -730,17 +786,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:51 GMT + - Tue, 02 Jun 2026 13:14:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 83608801-046e-402a-8361-59d540f70a51 + - 4cc177e7-12e6-407a-ada9-b6bd4aea0962 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -766,14 +822,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -782,15 +839,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:52 GMT + - Tue, 02 Jun 2026 13:14:16 GMT Pragma: - no-cache RequestId: - - ac542782-3cf5-494c-8162-27cbe531884f + - 0f681603-64cc-4c5d-86cf-15e67d441fdf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -816,46 +873,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "567d406d-c923-479b-aaf7-646acd8e2ff1", "type": "KQLDashboard", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2df73074-b9a3-42d8-b499-0508c3b82015", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -864,15 +931,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '837' + - '1034' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:27 GMT + - Tue, 02 Jun 2026 13:14:17 GMT Pragma: - no-cache RequestId: - - 27e7b4b8-9620-4660-98c0-4adb3ed701f3 + - a09ff45d-fc6d-478e-a87d-b6e36ba27c5c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -900,9 +967,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/567d406d-c923-479b-aaf7-646acd8e2ff1 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/2df73074-b9a3-42d8-b499-0508c3b82015 response: body: string: '' @@ -918,11 +985,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:38:27 GMT + - Tue, 02 Jun 2026 13:14:18 GMT Pragma: - no-cache RequestId: - - 5ab782d4-e2e9-412e-ab21-f53fe17d6e46 + - 18ac27fc-9c5d-4f03-ae85-55b07823b200 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDatabase].yaml index 27711c46..00483536 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLDatabase].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:30 GMT + - Tue, 02 Jun 2026 13:09:46 GMT Pragma: - no-cache RequestId: - - b9b1497c-53e8-4695-95f8-1a21fa3f0528 + - 17880f2a-1164-45ad-a516-dd0f25d70cfb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,24 +62,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -87,15 +100,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '640' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:31 GMT + - Tue, 02 Jun 2026 13:09:47 GMT Pragma: - no-cache RequestId: - - 9af5330d-4353-4e31-9d3e-70b959c0c55d + - ebce7bc8-9ce9-435d-9bfb-bd62582d9bfa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -121,24 +134,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -147,15 +172,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '640' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:32 GMT + - Tue, 02 Jun 2026 13:09:48 GMT Pragma: - no-cache RequestId: - - 628dc40b-fa1a-47b0-8957-e050187412f5 + - 61e3dab8-7a66-4e3c-9a78-2cfceab58625 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -170,7 +195,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001_auto", "type": "Eventhouse", "folderId": null}' + body: '{"displayName": "fabcli000001_auto", "type": "Eventhouse", "folderId": + null}' headers: Accept: - '*/*' @@ -180,18 +206,16 @@ interactions: - keep-alive Content-Length: - '80' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/eventhouses + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/eventhouses response: body: - string: '{"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", - "displayName": "fabcli000001_auto", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", "type": "Eventhouse", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -200,17 +224,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '173' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:35 GMT + - Tue, 02 Jun 2026 13:09:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 55c9dca2-c65c-47cb-b29c-8d7edac2d31f + - c2502a5e-fc18-42a2-a0d0-ec03dcea80b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -225,9 +249,8 @@ interactions: code: 201 message: Created - request: - body: '{"displayName": "fabcli000001", "type": - "KQLDatabase", "folderId": null, "creationPayload": {"databaseType": "ReadWrite", - "parentEventhouseItemId": "db07745b-3810-4e81-969c-efed85c39a88"}}' + body: '{"displayName": "fabcli000001", "type": "KQLDatabase", "folderId": null, + "creationPayload": {"databaseType": "ReadWrite", "parentEventhouseItemId": "35ada142-faf1-4306-a1f9-68e43b1f3e2c"}}' headers: Accept: - '*/*' @@ -237,13 +260,12 @@ interactions: - keep-alive Content-Length: - '192' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/kqlDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/kqlDatabases response: body: string: 'null' @@ -259,15 +281,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:37 GMT + - Tue, 02 Jun 2026 13:09:55 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8d6ef2b-c521-4ff0-9ef5-8ffd1a494033 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7cc1008c-3542-422b-9deb-699242b39c9b Pragma: - no-cache RequestId: - - 83e2c04c-2513-409d-b828-6ef75c9a36ee + - 474ce393-e18d-42ff-abe6-c52d2eea6edd Retry-After: - '20' Strict-Transport-Security: @@ -281,7 +303,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - f8d6ef2b-c521-4ff0-9ef5-8ffd1a494033 + - 7cc1008c-3542-422b-9deb-699242b39c9b status: code: 202 message: Accepted @@ -297,13 +319,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8d6ef2b-c521-4ff0-9ef5-8ffd1a494033 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7cc1008c-3542-422b-9deb-699242b39c9b response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:30:37.0966007", - "lastUpdatedTimeUtc": "2026-04-14T12:30:41.8736151", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:09:54.382715", + "lastUpdatedTimeUtc": "2026-06-02T13:10:01.1770584", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -317,13 +339,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:57 GMT + - Tue, 02 Jun 2026 13:10:15 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8d6ef2b-c521-4ff0-9ef5-8ffd1a494033/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7cc1008c-3542-422b-9deb-699242b39c9b/result Pragma: - no-cache RequestId: - - d4f70eb6-5697-4736-b07c-132e5839afbd + - 07eb3fd2-62d3-40de-aa51-b04ab28b72cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -331,7 +353,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - f8d6ef2b-c521-4ff0-9ef5-8ffd1a494033 + - 7cc1008c-3542-422b-9deb-699242b39c9b status: code: 200 message: OK @@ -347,14 +369,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8d6ef2b-c521-4ff0-9ef5-8ffd1a494033/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7cc1008c-3542-422b-9deb-699242b39c9b/result response: body: - string: '{"id": "909b1591-b880-4298-a1f8-4530927ccd0d", "type": "KQLDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "9b26af0b-3881-42fe-bfe7-a18f5125b09c", "type": "KQLDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -365,11 +386,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:30:58 GMT + - Tue, 02 Jun 2026 13:10:16 GMT Pragma: - no-cache RequestId: - - 0774e882-f129-4bc3-95d3-86d1665f1790 + - 437e430c-2dd5-4a56-ba23-878aed13b1cc Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -393,14 +414,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -409,15 +431,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:59 GMT + - Tue, 02 Jun 2026 13:10:17 GMT Pragma: - no-cache RequestId: - - 766d486f-e001-413d-b9bc-1dbcc89f0415 + - 7175efbd-556a-49b8-9f59-55bd82571752 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -443,30 +465,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "909b1591-b880-4298-a1f8-4530927ccd0d", "type": "KQLDatabase", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9b26af0b-3881-42fe-bfe7-a18f5125b09c", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -475,15 +509,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '544' + - '749' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:00 GMT + - Tue, 02 Jun 2026 13:10:17 GMT Pragma: - no-cache RequestId: - - 084248f3-8d7c-47f0-9a44-5d5d0c1585dc + - 66107179-1e55-41a1-9bca-10c8c6c51155 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -509,14 +543,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/909b1591-b880-4298-a1f8-4530927ccd0d + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9b26af0b-3881-42fe-bfe7-a18f5125b09c response: body: - string: '{"id": "909b1591-b880-4298-a1f8-4530927ccd0d", "type": "KQLDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "9b26af0b-3881-42fe-bfe7-a18f5125b09c", "type": "KQLDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -525,17 +558,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:01 GMT + - Tue, 02 Jun 2026 13:10:18 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 49d32678-3128-4bef-8bdd-39661f67c241 + - 4473c385-a61b-4013-abae-30ac6b52c31e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -563,9 +596,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/909b1591-b880-4298-a1f8-4530927ccd0d/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9b26af0b-3881-42fe-bfe7-a18f5125b09c/getDefinition response: body: string: 'null' @@ -581,13 +614,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:02 GMT + - Tue, 02 Jun 2026 13:10:19 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/42680738-4000-45d3-9e36-98a09b0ffdc9 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4d2bd66d-4a7f-447b-867c-015e81b8471e Pragma: - no-cache RequestId: - - 138e5c60-36e4-48dc-8143-24b133165c1d + - 72e1cee3-c233-486a-9cdd-c1820792c349 Retry-After: - '20' Strict-Transport-Security: @@ -601,7 +634,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 42680738-4000-45d3-9e36-98a09b0ffdc9 + - 4d2bd66d-4a7f-447b-867c-015e81b8471e status: code: 202 message: Accepted @@ -617,13 +650,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/42680738-4000-45d3-9e36-98a09b0ffdc9 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4d2bd66d-4a7f-447b-867c-015e81b8471e response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:31:02.6867189", - "lastUpdatedTimeUtc": "2026-04-14T12:31:21.7296752", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:10:20.2753385", + "lastUpdatedTimeUtc": "2026-06-02T13:10:39.5308916", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -633,17 +666,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:23 GMT + - Tue, 02 Jun 2026 13:10:40 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/42680738-4000-45d3-9e36-98a09b0ffdc9/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4d2bd66d-4a7f-447b-867c-015e81b8471e/result Pragma: - no-cache RequestId: - - 4e07591a-978b-4598-b13c-8b77ee462cba + - 9127017d-2068-4c1c-be38-33505cdf1723 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -651,7 +684,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 42680738-4000-45d3-9e36-98a09b0ffdc9 + - 4d2bd66d-4a7f-447b-867c-015e81b8471e status: code: 200 message: OK @@ -667,16 +700,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/42680738-4000-45d3-9e36-98a09b0ffdc9/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4d2bd66d-4a7f-447b-867c-015e81b8471e/result response: body: string: '{"definition": {"parts": [{"path": "DatabaseProperties.json", "payload": - "ew0KICAiZGF0YWJhc2VUeXBlIjogIlJlYWRXcml0ZSIsDQogICJwYXJlbnRFdmVudGhvdXNlSXRlbUlkIjogImRiMDc3NDViLTM4MTAtNGU4MS05NjljLWVmZWQ4NWMzOWE4OCIsDQogICJvbmVMYWtlQ2FjaGluZ1BlcmlvZCI6ICJQMzY1MDAwRCIsDQogICJvbmVMYWtlU3RhbmRhcmRTdG9yYWdlUGVyaW9kIjogIlAzNjUwMDBEIg0KfQ==", + "ew0KICAiZGF0YWJhc2VUeXBlIjogIlJlYWRXcml0ZSIsDQogICJwYXJlbnRFdmVudGhvdXNlSXRlbUlkIjogIjM1YWRhMTQyLWZhZjEtNDMwNi1hMWY5LTY4ZTQzYjFmM2UyYyIsDQogICJvbmVMYWtlQ2FjaGluZ1BlcmlvZCI6ICJQMzY1MDAwRCIsDQogICJvbmVMYWtlU3RhbmRhcmRTdG9yYWdlUGVyaW9kIjogIlAzNjUwMDBEIg0KfQ==", "payloadType": "InlineBase64"}, {"path": "DatabaseSchema.kql", "payload": "Ly8gS1FMIHNjcmlwdA0KLy8gVXNlIG1hbmFnZW1lbnQgY29tbWFuZHMgaW4gdGhpcyBzY3JpcHQgdG8gY29uZmlndXJlIHlvdXIgZGF0YWJhc2UgaXRlbXMsIHN1Y2ggYXMgdGFibGVzLCBmdW5jdGlvbnMsIG1hdGVyaWFsaXplZCB2aWV3cywgYW5kIG1vcmUuDQoNCg0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhdGFiYXNlIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhdGFiYXNlIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -688,11 +721,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:31:23 GMT + - Tue, 02 Jun 2026 13:10:41 GMT Pragma: - no-cache RequestId: - - 99c0bc35-5c8a-48c8-9ae9-0580929ad995 + - 15150715-cd8c-4e14-8fd6-47e504ef1807 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -716,14 +749,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -732,15 +766,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:25 GMT + - Tue, 02 Jun 2026 13:10:42 GMT Pragma: - no-cache RequestId: - - 8e6a6c49-955a-4f8d-9313-fb1698e1b4a6 + - ab385739-3173-4466-8b1a-41b8ae676800 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -766,30 +800,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "909b1591-b880-4298-a1f8-4530927ccd0d", "type": "KQLDatabase", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9b26af0b-3881-42fe-bfe7-a18f5125b09c", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -798,15 +844,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '544' + - '749' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:26 GMT + - Tue, 02 Jun 2026 13:10:43 GMT Pragma: - no-cache RequestId: - - 7a27c889-0375-4768-ac38-4aaf2b5f15f2 + - 2306efca-04e1-4fde-be7a-9895e38ff36d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -832,30 +878,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "909b1591-b880-4298-a1f8-4530927ccd0d", "type": "KQLDatabase", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9b26af0b-3881-42fe-bfe7-a18f5125b09c", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -864,15 +922,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '544' + - '749' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:26 GMT + - Tue, 02 Jun 2026 13:10:44 GMT Pragma: - no-cache RequestId: - - 561c2c66-5608-4e04-836f-02421970e259 + - f3a25c18-23eb-4875-8201-8c5f2bd895f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -887,12 +945,11 @@ interactions: code: 200 message: OK - request: - body: '{"type": "KQLDatabase", "folderId": - null, "displayName": "fabcli000001_new_7", "definition": {"parts": [{"path": - ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMRGF0YWJhc2UiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + body: '{"type": "KQLDatabase", "folderId": null, "displayName": "fabcli000001_new_7", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMRGF0YWJhc2UiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}, {"path": "DatabaseSchema.kql", "payload": "Ly8gS1FMIHNjcmlwdA0KLy8gVXNlIG1hbmFnZW1lbnQgY29tbWFuZHMgaW4gdGhpcyBzY3JpcHQgdG8gY29uZmlndXJlIHlvdXIgZGF0YWJhc2UgaXRlbXMsIHN1Y2ggYXMgdGFibGVzLCBmdW5jdGlvbnMsIG1hdGVyaWFsaXplZCB2aWV3cywgYW5kIG1vcmUuDQoNCg0K", "payloadType": "InlineBase64"}, {"path": "DatabaseProperties.json", "payload": - "ewogICAgImRhdGFiYXNlVHlwZSI6ICJSZWFkV3JpdGUiLAogICAgInBhcmVudEV2ZW50aG91c2VJdGVtSWQiOiAiZGIwNzc0NWItMzgxMC00ZTgxLTk2OWMtZWZlZDg1YzM5YTg4IiwKICAgICJvbmVMYWtlQ2FjaGluZ1BlcmlvZCI6ICJQMzY1MDAwRCIsCiAgICAib25lTGFrZVN0YW5kYXJkU3RvcmFnZVBlcmlvZCI6ICJQMzY1MDAwRCIKfQ==", + "ewogICAgImRhdGFiYXNlVHlwZSI6ICJSZWFkV3JpdGUiLAogICAgInBhcmVudEV2ZW50aG91c2VJdGVtSWQiOiAiMzVhZGExNDItZmFmMS00MzA2LWExZjktNjhlNDNiMWYzZTJjIiwKICAgICJvbmVMYWtlQ2FjaGluZ1BlcmlvZCI6ICJQMzY1MDAwRCIsCiAgICAib25lTGFrZVN0YW5kYXJkU3RvcmFnZVBlcmlvZCI6ICJQMzY1MDAwRCIKfQ==", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -902,14 +959,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1299' - + - '1247' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -925,15 +981,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:28 GMT + - Tue, 02 Jun 2026 13:10:46 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58e44230-7b2a-46db-81d7-d261f81697db + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/72ac9916-b3ba-4c0d-983c-fd2c75fbefbf Pragma: - no-cache RequestId: - - c668c6e6-dcaf-487a-829c-5bb5c5b657c8 + - 33b638a3-815f-4a2f-9afe-35846379601c Retry-After: - '20' Strict-Transport-Security: @@ -947,7 +1003,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 58e44230-7b2a-46db-81d7-d261f81697db + - 72ac9916-b3ba-4c0d-983c-fd2c75fbefbf status: code: 202 message: Accepted @@ -963,13 +1019,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58e44230-7b2a-46db-81d7-d261f81697db + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/72ac9916-b3ba-4c0d-983c-fd2c75fbefbf response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:31:28.1532506", - "lastUpdatedTimeUtc": "2026-04-14T12:31:37.9699747", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:10:45.634436", + "lastUpdatedTimeUtc": "2026-06-02T13:11:05.4612844", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -983,13 +1039,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:49 GMT + - Tue, 02 Jun 2026 13:11:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58e44230-7b2a-46db-81d7-d261f81697db/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/72ac9916-b3ba-4c0d-983c-fd2c75fbefbf/result Pragma: - no-cache RequestId: - - da1b869f-47a4-4ad1-91d1-4288be8d1615 + - be9c7ce2-537d-462a-851b-e02542bfe904 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -997,7 +1053,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 58e44230-7b2a-46db-81d7-d261f81697db + - 72ac9916-b3ba-4c0d-983c-fd2c75fbefbf status: code: 200 message: OK @@ -1013,14 +1069,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58e44230-7b2a-46db-81d7-d261f81697db/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/72ac9916-b3ba-4c0d-983c-fd2c75fbefbf/result response: body: - string: '{"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", - "displayName": "fabcli000001_new_7", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", + "displayName": "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1031,11 +1086,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:31:50 GMT + - Tue, 02 Jun 2026 13:11:08 GMT Pragma: - no-cache RequestId: - - c996af19-492e-4d50-abef-838501a963ec + - 208dc1fe-8a6c-414b-bcfc-d23ccf112ca2 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1059,14 +1114,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1075,15 +1131,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:50 GMT + - Tue, 02 Jun 2026 13:11:09 GMT Pragma: - no-cache RequestId: - - 07475e79-6fe3-42bc-b03f-087e62e2266f + - 9a7736d2-d57c-48e4-b70f-e47999f2696f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1109,32 +1165,44 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "909b1591-b880-4298-a1f8-4530927ccd0d", "type": "KQLDatabase", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9b26af0b-3881-42fe-bfe7-a18f5125b09c", "type": "KQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1143,15 +1211,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '574' + - '779' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:51 GMT + - Tue, 02 Jun 2026 13:11:09 GMT Pragma: - no-cache RequestId: - - 204c9e3f-0c7c-41e2-990b-86ca6d7212e7 + - 1e12e49f-db81-40e5-a2c0-913d9978310f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1179,9 +1247,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/909b1591-b880-4298-a1f8-4530927ccd0d + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9b26af0b-3881-42fe-bfe7-a18f5125b09c response: body: string: '' @@ -1197,11 +1265,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:31:52 GMT + - Tue, 02 Jun 2026 13:11:10 GMT Pragma: - no-cache RequestId: - - 34a5916c-0405-4b1b-8b15-4ac0e82f45d7 + - d8daa2a7-d271-47df-85f3-467fcb9e8ef3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLQueryset].yaml index 1ceb6dae..e6454b21 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLQueryset].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[KQLQueryset].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:53 GMT + - Tue, 02 Jun 2026 13:11:11 GMT Pragma: - no-cache RequestId: - - b7619af1-96e6-4ab1-bf06-89a6766fd56e + - b000f32f-7aa2-4777-a272-3c7b279a8ef6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,30 +62,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -93,15 +106,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '545' + - '751' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:54 GMT + - Tue, 02 Jun 2026 13:11:12 GMT Pragma: - no-cache RequestId: - - 5d8f8754-5ff6-4447-a11f-ec70ae4b936e + - 0c4f8c80-179a-42a6-aeae-89b43c911f2e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -127,30 +140,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -159,15 +184,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '545' + - '751' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:55 GMT + - Tue, 02 Jun 2026 13:11:13 GMT Pragma: - no-cache RequestId: - - 8da08ad8-240c-4e3b-875b-656e4ea034ce + - 26fab1b8-66bf-441e-8bff-e7dd7b4e3c0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -192,18 +217,16 @@ interactions: - keep-alive Content-Length: - '76' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/kqlQuerysets + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/kqlQuerysets response: body: - string: '{"id": "c7f30120-ee6b-42b8-84ee-a4c1cae59fca", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "07a5a595-29c3-4558-87ab-bc8afec47b2b", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -212,17 +235,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:56 GMT + - Tue, 02 Jun 2026 13:11:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1d987fec-7482-48a4-bfaf-4dbf86911bbb + - a6f77f59-b634-4e5c-823d-df4f9f76a974 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -248,14 +271,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -264,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:57 GMT + - Tue, 02 Jun 2026 13:11:16 GMT Pragma: - no-cache RequestId: - - d8ea545f-dc3d-464a-978a-90a68a2909fe + - 04685106-acd6-428b-ab25-a4b0c08f4bcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -298,32 +322,44 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "c7f30120-ee6b-42b8-84ee-a4c1cae59fca", "type": "KQLQueryset", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "07a5a595-29c3-4558-87ab-bc8afec47b2b", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -332,15 +368,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '589' + - '796' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:58 GMT + - Tue, 02 Jun 2026 13:11:17 GMT Pragma: - no-cache RequestId: - - c9889255-a4dc-449a-b6ff-e19398c3e79f + - 2a1306c4-f6b1-4e62-84bf-665d8dcb6dae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,14 +402,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/c7f30120-ee6b-42b8-84ee-a4c1cae59fca + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/07a5a595-29c3-4558-87ab-bc8afec47b2b response: body: - string: '{"id": "c7f30120-ee6b-42b8-84ee-a4c1cae59fca", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "07a5a595-29c3-4558-87ab-bc8afec47b2b", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -382,17 +417,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:31:59 GMT + - Tue, 02 Jun 2026 13:11:18 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4413527b-214e-4064-b1f4-5c36a8310ef1 + - 1b985133-7085-47b0-8d8d-bd6a398ba955 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -420,13 +455,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/c7f30120-ee6b-42b8-84ee-a4c1cae59fca/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/07a5a595-29c3-4558-87ab-bc8afec47b2b/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeQueryset.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -436,15 +471,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '401' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:00 GMT + - Tue, 02 Jun 2026 13:11:19 GMT Pragma: - no-cache RequestId: - - 66a37221-f93c-4fd3-8705-be8c634fb273 + - cd331b63-7d36-4c08-bfb4-63369ed3e346 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -470,14 +505,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -486,15 +522,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:01 GMT + - Tue, 02 Jun 2026 13:11:20 GMT Pragma: - no-cache RequestId: - - b42ae515-db9d-4c6a-9c6b-f5629fbfbe99 + - 236f1e1c-9b3d-4e56-8844-a724d61e7a53 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,32 +556,44 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "c7f30120-ee6b-42b8-84ee-a4c1cae59fca", "type": "KQLQueryset", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "07a5a595-29c3-4558-87ab-bc8afec47b2b", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -554,15 +602,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '589' + - '796' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:02 GMT + - Tue, 02 Jun 2026 13:11:20 GMT Pragma: - no-cache RequestId: - - 4d028993-5568-4c67-8184-8818286c6ae3 + - 612b3c4c-069c-4cb6-b961-b09694177a69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -588,32 +636,44 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "c7f30120-ee6b-42b8-84ee-a4c1cae59fca", "type": "KQLQueryset", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "07a5a595-29c3-4558-87ab-bc8afec47b2b", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -622,15 +682,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '589' + - '796' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:02 GMT + - Tue, 02 Jun 2026 13:11:22 GMT Pragma: - no-cache RequestId: - - 52720341-20c6-49ce-8e55-b26cb7a578ea + - 602a5a60-b69d-41c2-9cf0-e3ecdc31972f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -645,7 +705,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "KQLQueryset", "folderId": null, "displayName": "fabcli000001_new_8", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMUXVlcnlzZXQiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "RealTimeQueryset.json", "payload": "e30=", "payloadType": "InlineBase64"}]}}' + body: '{"type": "KQLQueryset", "folderId": null, "displayName": "fabcli000001_new_8", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMUXVlcnlzZXQiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": "RealTimeQueryset.json", "payload": + "e30=", "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -654,19 +717,17 @@ interactions: Connection: - keep-alive Content-Length: - - '759' - + - '707' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", - "displayName": "fabcli000001_new_8", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", + "displayName": "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -675,17 +736,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:05 GMT + - Tue, 02 Jun 2026 13:11:24 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9457bcee-0cf9-40d3-bd28-d910afeb688f + - d64620d1-a744-469d-992b-a91e88982a07 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -711,14 +772,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -727,15 +789,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:05 GMT + - Tue, 02 Jun 2026 13:11:25 GMT Pragma: - no-cache RequestId: - - f5a00233-91a2-43f3-9859-19daec3d60ce + - d652b6f8-c8e8-4f70-bad8-b58869c4ace5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -761,34 +823,46 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "c7f30120-ee6b-42b8-84ee-a4c1cae59fca", "type": "KQLQueryset", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "07a5a595-29c3-4558-87ab-bc8afec47b2b", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -797,15 +871,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '618' + - '826' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:32:06 GMT + - Tue, 02 Jun 2026 13:11:26 GMT Pragma: - no-cache RequestId: - - 5c59bce3-6097-4928-8146-514d4e7a074d + - 5bb4c98f-bac5-4238-a04f-05b0914de853 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -833,9 +907,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/c7f30120-ee6b-42b8-84ee-a4c1cae59fca + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/07a5a595-29c3-4558-87ab-bc8afec47b2b response: body: string: '' @@ -851,11 +925,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:32:07 GMT + - Tue, 02 Jun 2026 13:11:27 GMT Pragma: - no-cache RequestId: - - a795a494-a16b-4c57-afd3-9862e69ac96f + - 2817acb7-9573-4a29-a484-41b05d8db351 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Lakehouse].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Lakehouse].yaml index b96e09d5..1adf334a 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Lakehouse].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Lakehouse].yaml @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:40 GMT + - Tue, 02 Jun 2026 13:22:08 GMT Pragma: - no-cache RequestId: - - ccf0e052-430c-439a-bf68-26854f39196d + - 1e6eed0e-2a83-4751-8eeb-86bed744501b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,26 +64,79 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -92,15 +145,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '436' + - '1451' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:40 GMT + - Tue, 02 Jun 2026 13:22:09 GMT Pragma: - no-cache RequestId: - - 3cc40d02-f64f-48d7-bc2d-4dfdb0c956c4 + - 52e9d839-204a-4401-9649-8999317a40c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -128,26 +181,79 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -156,15 +262,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '436' + - '1451' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:42 GMT + - Tue, 02 Jun 2026 13:22:11 GMT Pragma: - no-cache RequestId: - - 8c5d082c-a232-449d-a46f-f88194870085 + - dc50d8b9-60c7-45d1-9e3d-bd901467e9c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -194,11 +300,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/lakehouses response: body: - string: '{"id": "3e39e31e-08d9-4577-b821-90a4c8be2e28", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "d64bb3fc-882c-4d23-8ae2-a08f8083eff6", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -207,17 +313,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '156' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:44 GMT + - Tue, 02 Jun 2026 13:22:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6582e6fc-94af-403b-aa06-79eac43c9b8a + - e2370883-dbb9-4a81-9122-a10ea73b9590 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -249,7 +355,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -260,15 +366,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:45 GMT + - Tue, 02 Jun 2026 13:22:16 GMT Pragma: - no-cache RequestId: - - 3fdcddef-07ab-4bee-9647-a4ee41c826e6 + - ff0a6bf9-18a6-4371-956d-2f25ecf8c5ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -296,28 +402,81 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "3e39e31e-08d9-4577-b821-90a4c8be2e28", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d64bb3fc-882c-4d23-8ae2-a08f8083eff6", "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -326,15 +485,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '469' + - '1485' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:46 GMT + - Tue, 02 Jun 2026 13:22:16 GMT Pragma: - no-cache RequestId: - - babe235c-ff75-409e-9cee-9ac39a0e9b80 + - b0e4be63-d7d0-4933-81d9-b72715feb14d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,11 +521,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/3e39e31e-08d9-4577-b821-90a4c8be2e28 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/d64bb3fc-882c-4d23-8ae2-a08f8083eff6 response: body: - string: '{"id": "3e39e31e-08d9-4577-b821-90a4c8be2e28", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "d64bb3fc-882c-4d23-8ae2-a08f8083eff6", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -375,17 +534,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '156' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:47 GMT + - Tue, 02 Jun 2026 13:22:17 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8d89fd2d-2d25-4729-8116-f7bb39015f85 + - bb8c3305-3988-443b-8534-b612c5ef859f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -415,7 +574,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/3e39e31e-08d9-4577-b821-90a4c8be2e28/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/d64bb3fc-882c-4d23-8ae2-a08f8083eff6/getDefinition response: body: string: '{"definition": {"parts": [{"path": "lakehouse.metadata.json", "payload": @@ -432,15 +591,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '785' + - '787' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:49 GMT + - Tue, 02 Jun 2026 13:22:21 GMT Pragma: - no-cache RequestId: - - 2a7604c2-e708-43ef-b6e5-3791cb5ede15 + - 61f51d1a-0de0-441a-a3c3-bce857f8c1ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -472,7 +631,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -483,15 +642,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:50 GMT + - Tue, 02 Jun 2026 13:22:21 GMT Pragma: - no-cache RequestId: - - 7fc668aa-5868-42ac-93fc-9128754f65b8 + - 39b05acc-5e4a-4285-9cb9-9e0802f5f3a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,30 +678,83 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "5cd7bbe9-85ef-4b2b-a00c-1a24b14fa829", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "6ecba9bc-108c-4818-8c7d-685af8072700", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "3e39e31e-08d9-4577-b821-90a4c8be2e28", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d64bb3fc-882c-4d23-8ae2-a08f8083eff6", "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -551,15 +763,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '1515' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:51 GMT + - Tue, 02 Jun 2026 13:22:22 GMT Pragma: - no-cache RequestId: - - 23634b72-b40a-41e7-8087-1a2961dfde19 + - 346a67d8-3754-4036-8386-37e006c14eda Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -587,30 +799,83 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "5cd7bbe9-85ef-4b2b-a00c-1a24b14fa829", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "6ecba9bc-108c-4818-8c7d-685af8072700", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "3e39e31e-08d9-4577-b821-90a4c8be2e28", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d64bb3fc-882c-4d23-8ae2-a08f8083eff6", "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -619,15 +884,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '1515' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:52 GMT + - Tue, 02 Jun 2026 13:22:22 GMT Pragma: - no-cache RequestId: - - 69110bff-8710-453e-94c0-01ba8f30f984 + - 155ed025-bd95-41fe-b42e-813f004b5e3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -644,11 +909,10 @@ interactions: - request: body: '{"type": "Lakehouse", "folderId": null, "displayName": "fabcli000001_new_18", "definition": {"parts": [{"path": "alm.settings.json", "payload": "ewogICAgInZlcnNpb24iOiAiMS4wLjEiLAogICAgIm9iamVjdFR5cGVzIjogWwogICAgICAgIHsKICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzIiwKICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiLAogICAgICAgICAgICAic3ViT2JqZWN0VHlwZXMiOiBbCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLk9uZUxha2UiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuQWRsc0dlbjIiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuRGF0YXZlcnNlIiwKICAgICAgICAgICAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCIKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLkFtYXpvblMzIiwKICAgICAgICAgICAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCIKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLlMzQ29tcGF0aWJsZSIsCiAgICAgICAgICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiCiAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICJuYW1lIjogIlNob3J0Y3V0cy5Hb29nbGVDbG91ZFN0b3JhZ2UiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuQXp1cmVCbG9iU3RvcmFnZSIsCiAgICAgICAgICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiCiAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICJuYW1lIjogIlNob3J0Y3V0cy5PbmVEcml2ZVNoYXJlUG9pbnQiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfQogICAgICAgICAgICBdCiAgICAgICAgfSwKICAgICAgICB7CiAgICAgICAgICAgICJuYW1lIjogIkRhdGFBY2Nlc3NSb2xlcyIsCiAgICAgICAgICAgICJzdGF0ZSI6ICJEaXNhYmxlZCIKICAgICAgICB9CiAgICBdCn0=", + "payloadType": "InlineBase64"}, {"path": "shortcuts.metadata.json", "payload": + "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTGFrZWhvdXNlIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "lakehouse.metadata.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": "shortcuts.metadata.json", - "payload": "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": - "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTGFrZWhvdXNlIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", - "payloadType": "InlineBase64"}]}}' + "e30=", "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -657,13 +921,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2623' + - '2624' Content-Type: - application/json User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -679,15 +943,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:17:55 GMT + - Tue, 02 Jun 2026 13:22:26 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ee267-e813-42e5-b079-c299ab34c31a + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c4685c2-7535-4dac-976f-4a609e838c68 Pragma: - no-cache RequestId: - - 212e23dd-d1b5-4b51-bff2-87a2eb3e5529 + - 3e1e822f-6923-48e3-a43d-c72bc45c25d8 Retry-After: - '20' Strict-Transport-Security: @@ -701,7 +965,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c33ee267-e813-42e5-b079-c299ab34c31a + - 8c4685c2-7535-4dac-976f-4a609e838c68 status: code: 202 message: Accepted @@ -719,11 +983,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ee267-e813-42e5-b079-c299ab34c31a + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c4685c2-7535-4dac-976f-4a609e838c68 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:17:54.3863078", - "lastUpdatedTimeUtc": "2026-05-13T10:17:58.3737265", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:22:24.7601856", + "lastUpdatedTimeUtc": "2026-06-02T13:22:29.7279334", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -737,13 +1001,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:15 GMT + - Tue, 02 Jun 2026 13:22:47 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ee267-e813-42e5-b079-c299ab34c31a/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c4685c2-7535-4dac-976f-4a609e838c68/result Pragma: - no-cache RequestId: - - 06b26bbd-eef5-4310-97a3-0a5dd3b294b8 + - a4407617-5094-4a53-9136-e8d303a61435 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -751,7 +1015,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c33ee267-e813-42e5-b079-c299ab34c31a + - 8c4685c2-7535-4dac-976f-4a609e838c68 status: code: 200 message: OK @@ -769,11 +1033,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ee267-e813-42e5-b079-c299ab34c31a/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c4685c2-7535-4dac-976f-4a609e838c68/result response: body: - string: '{"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", "type": "Lakehouse", - "displayName": "fabcli000001_new_18", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "314678d7-183b-41ab-a546-2e562572ba02", "type": "Lakehouse", + "displayName": "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -784,11 +1048,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:18:16 GMT + - Tue, 02 Jun 2026 13:22:48 GMT Pragma: - no-cache RequestId: - - c0b0236b-a416-43ff-b1d2-c1967ac6b710 + - 829d1360-c4fe-4da7-81cc-50833b2b5b79 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -818,7 +1082,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -829,15 +1093,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:18 GMT + - Tue, 02 Jun 2026 13:22:49 GMT Pragma: - no-cache RequestId: - - ad2c89ca-e7ef-41e7-a554-be5a1f2c29ce + - 192e26e1-4f00-413e-9f87-f9174c583c3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -865,34 +1129,87 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "5cd7bbe9-85ef-4b2b-a00c-1a24b14fa829", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "751c1f18-e2a1-4bb3-9bdf-a28f9358bf2b", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "6ecba9bc-108c-4818-8c7d-685af8072700", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "3e39e31e-08d9-4577-b821-90a4c8be2e28", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d64bb3fc-882c-4d23-8ae2-a08f8083eff6", "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -901,15 +1218,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '551' + - '1569' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:18 GMT + - Tue, 02 Jun 2026 13:22:49 GMT Pragma: - no-cache RequestId: - - cf3efc70-948d-4d94-a8c2-d0d22b0507ae + - e0d52481-f376-4412-beb3-c37764db2984 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -939,7 +1256,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/3e39e31e-08d9-4577-b821-90a4c8be2e28 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/d64bb3fc-882c-4d23-8ae2-a08f8083eff6 response: body: string: '' @@ -955,11 +1272,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 10:18:20 GMT + - Tue, 02 Jun 2026 13:22:50 GMT Pragma: - no-cache RequestId: - - ed3bec95-b863-48dd-b5ee-00ad84f3ad74 + - abf42f40-2609-435f-a9a4-1103af0c625e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[MirroredDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[MirroredDatabase].yaml index c3fd580d..227a3a45 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[MirroredDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[MirroredDatabase].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:33:07 GMT + - Tue, 02 Jun 2026 13:12:27 GMT Pragma: - no-cache RequestId: - - 1c583fa4-e2a5-461e-b995-a22b2dc69153 + - cec91e12-93d0-4aad-9621-60ecd5492676 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,34 +62,46 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -97,15 +110,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '629' + - '836' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:33:08 GMT + - Tue, 02 Jun 2026 13:12:29 GMT Pragma: - no-cache RequestId: - - 8d469cfe-a125-49bf-a9a7-24d85273979e + - 9e1a3075-2ae9-42c9-b496-6575e994aaed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -131,34 +144,46 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -167,15 +192,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '629' + - '836' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:33:09 GMT + - Tue, 02 Jun 2026 13:12:30 GMT Pragma: - no-cache RequestId: - - 5b8f3900-fe2f-432d-9423-d39648125995 + - 4da39a4d-8355-4f00-b63f-8571b5ab3f5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -190,7 +215,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "MirroredDatabase", "folderId": null, "definition": {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000001", "type": "MirroredDatabase", "folderId": + null, "definition": {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -200,18 +227,16 @@ interactions: - keep-alive Content-Length: - '570' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/mirroredDatabases response: body: - string: '{"id": "8794a37d-1f46-464e-822b-cc0e376eebd6", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "31a72662-57ea-427e-97ef-80f83e64a021", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -220,17 +245,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:33:11 GMT + - Tue, 02 Jun 2026 13:12:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b338e53b-5866-4dca-84ce-51849e651fe9 + - fe63d1e6-8952-4ed9-92c5-83fe8895087a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -256,14 +281,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -272,15 +298,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:12 GMT + - Tue, 02 Jun 2026 13:13:33 GMT Pragma: - no-cache RequestId: - - 29545168-7533-46b6-b2bc-ee607a59600c + - e6c1ba73-4b8c-425a-bfeb-da4f5d01d3e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -306,39 +332,50 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "0a5dcdb9-60c8-42a7-9e44-3eedd8d63e4e", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "8794a37d-1f46-464e-822b-cc0e376eebd6", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3a1d9eb2-7050-44dc-ba09-deb1e9fb31c0", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "31a72662-57ea-427e-97ef-80f83e64a021", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -347,15 +384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '718' + - '910' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:13 GMT + - Tue, 02 Jun 2026 13:13:34 GMT Pragma: - no-cache RequestId: - - 0e200ba1-94c5-43ee-a280-6523519c7487 + - f0ea0dec-dd41-486a-baab-ecbeb561dd5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -381,14 +418,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8794a37d-1f46-464e-822b-cc0e376eebd6 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/31a72662-57ea-427e-97ef-80f83e64a021 response: body: - string: '{"id": "8794a37d-1f46-464e-822b-cc0e376eebd6", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "31a72662-57ea-427e-97ef-80f83e64a021", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -397,17 +433,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:14 GMT + - Tue, 02 Jun 2026 13:13:35 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 10c3a451-b65e-44d7-9a5c-04c88a572dfc + - b1978e28-46e5-4752-8957-59d2d1ce5156 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -435,13 +471,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8794a37d-1f46-464e-822b-cc0e376eebd6/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/31a72662-57ea-427e-97ef-80f83e64a021/getDefinition response: body: string: '{"definition": {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -451,15 +487,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '561' + - '535' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:15 GMT + - Tue, 02 Jun 2026 13:13:36 GMT Pragma: - no-cache RequestId: - - 416ce5af-e871-49e0-9fa8-1ec29573ea40 + - 72dd40d1-22cb-4569-b35e-0bc0d3946014 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -485,14 +521,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -501,15 +538,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:15 GMT + - Tue, 02 Jun 2026 13:13:36 GMT Pragma: - no-cache RequestId: - - a2c50142-6af7-4409-849a-d5d1fe9590e6 + - a6941d8f-c802-4547-9b06-72f3a24cf928 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -535,39 +572,50 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "0a5dcdb9-60c8-42a7-9e44-3eedd8d63e4e", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "8794a37d-1f46-464e-822b-cc0e376eebd6", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3a1d9eb2-7050-44dc-ba09-deb1e9fb31c0", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "31a72662-57ea-427e-97ef-80f83e64a021", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -576,15 +624,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '718' + - '910' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:17 GMT + - Tue, 02 Jun 2026 13:13:38 GMT Pragma: - no-cache RequestId: - - be1028fe-09d3-4d33-8629-37968ff7fb2f + - a63adfab-7f1d-4cb6-9ec0-8f63b37f790c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -610,39 +658,50 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "0a5dcdb9-60c8-42a7-9e44-3eedd8d63e4e", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "8794a37d-1f46-464e-822b-cc0e376eebd6", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3a1d9eb2-7050-44dc-ba09-deb1e9fb31c0", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "31a72662-57ea-427e-97ef-80f83e64a021", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -651,15 +710,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '718' + - '910' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:17 GMT + - Tue, 02 Jun 2026 13:13:39 GMT Pragma: - no-cache RequestId: - - e6e1620e-f7be-40a1-b5bf-cbddfdd56983 + - a03837da-25dc-4365-aa89-d6e2fbfaf124 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -674,7 +733,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "MirroredDatabase", "folderId": null, "displayName": "fabcli000001_new_10", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTWlycm9yZWREYXRhYmFzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' + body: '{"type": "MirroredDatabase", "folderId": null, "displayName": "fabcli000001_new_10", + "definition": {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTWlycm9yZWREYXRhYmFzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -683,19 +745,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1150' - + - '1094' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -704,17 +764,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:19 GMT + - Tue, 02 Jun 2026 13:13:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9afd0e64-a381-4abd-a7b4-3e59a2b8d4d1 + - e65d1fe5-fbc0-457d-adde-2f19a37fc8a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -740,14 +800,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -756,15 +817,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:20 GMT + - Tue, 02 Jun 2026 13:13:41 GMT Pragma: - no-cache RequestId: - - d8af4c2c-c124-43b8-8849-791793465cae + - b003654e-1396-4694-a200-a30481232114 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -790,40 +851,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "0a5dcdb9-60c8-42a7-9e44-3eedd8d63e4e", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "8794a37d-1f46-464e-822b-cc0e376eebd6", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", - "type": "MirroredDatabase", "displayName": "fabcli000001_new_10", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3a1d9eb2-7050-44dc-ba09-deb1e9fb31c0", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "31a72662-57ea-427e-97ef-80f83e64a021", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -832,15 +905,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '750' + - '941' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:20 GMT + - Tue, 02 Jun 2026 13:13:43 GMT Pragma: - no-cache RequestId: - - c267c1f2-383b-4d77-a655-ceeea3fd4d4a + - b943c822-55d0-4610-9eec-83f55769f449 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,9 +941,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8794a37d-1f46-464e-822b-cc0e376eebd6 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/31a72662-57ea-427e-97ef-80f83e64a021 response: body: string: '' @@ -886,11 +959,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:34:21 GMT + - Tue, 02 Jun 2026 13:13:44 GMT Pragma: - no-cache RequestId: - - 450f302e-5898-4f91-8b21-0a455369f781 + - 24107a56-31cd-421a-a7bc-43f8b7c4443e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Notebook].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Notebook].yaml index aec9919d..cb4e8e09 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Notebook].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Notebook].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:35 GMT + - Tue, 02 Jun 2026 13:04:42 GMT Pragma: - no-cache RequestId: - - a05d8663-48fe-4d57-9258-4728ff59750d + - 3fa3f920-ae1c-46a3-8a9e-b36920ec970b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +88,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '374' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:36 GMT + - Tue, 02 Jun 2026 13:04:43 GMT Pragma: - no-cache RequestId: - - 3d1fc693-2882-4c73-b54d-da9f76b09ce8 + - 61ac1ef8-27f1-4826-9c26-b3f382fa26a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +122,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +148,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '374' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:37 GMT + - Tue, 02 Jun 2026 13:04:44 GMT Pragma: - no-cache RequestId: - - 07353f9e-5bac-487f-bf9f-b44709ff37c9 + - 3c7b6747-764a-42c3-92a8-c069a4a78a19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +171,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000001", "type": "Notebook", "folderId": null, "definition": + {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -156,13 +183,12 @@ interactions: - keep-alive Content-Length: - '731' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/notebooks response: body: string: 'null' @@ -178,15 +204,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:38 GMT + - Tue, 02 Jun 2026 13:04:45 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7b1f2af4-874c-443a-a6fa-d6586e3d07e3 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/41154335-1636-451d-beb7-57bb24fe0cbe Pragma: - no-cache RequestId: - - 02a83225-1cc6-4f00-8c69-568747b44af4 + - c25e576e-853d-45b0-acac-9d5f891b4772 Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +226,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 7b1f2af4-874c-443a-a6fa-d6586e3d07e3 + - 41154335-1636-451d-beb7-57bb24fe0cbe status: code: 202 message: Accepted @@ -216,13 +242,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7b1f2af4-874c-443a-a6fa-d6586e3d07e3 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/41154335-1636-451d-beb7-57bb24fe0cbe response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:25:38.4363399", - "lastUpdatedTimeUtc": "2026-04-14T12:25:39.7442334", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:04:45.7613347", + "lastUpdatedTimeUtc": "2026-06-02T13:04:47.1699277", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +258,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:59 GMT + - Tue, 02 Jun 2026 13:05:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7b1f2af4-874c-443a-a6fa-d6586e3d07e3/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/41154335-1636-451d-beb7-57bb24fe0cbe/result Pragma: - no-cache RequestId: - - 8e33edd1-6af1-48bd-b0fe-e06522035ff9 + - 0a5ba623-c444-4613-bdd6-2ee5ccde4849 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +276,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 7b1f2af4-874c-443a-a6fa-d6586e3d07e3 + - 41154335-1636-451d-beb7-57bb24fe0cbe status: code: 200 message: OK @@ -266,14 +292,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7b1f2af4-874c-443a-a6fa-d6586e3d07e3/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/41154335-1636-451d-beb7-57bb24fe0cbe/result response: body: - string: '{"id": "082a3462-33b7-4c34-9e1b-f127b690d768", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "1b712107-cffe-4e0e-b42a-eec4ac85e052", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +309,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:25:59 GMT + - Tue, 02 Jun 2026 13:05:07 GMT Pragma: - no-cache RequestId: - - c6dc22f8-7e94-4593-9101-5214f1835ad6 + - 0051c1f9-6c7b-46f3-9737-240fced2ca2b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +337,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +354,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:01 GMT + - Tue, 02 Jun 2026 13:05:08 GMT Pragma: - no-cache RequestId: - - dc8245e8-a2ec-4937-847a-1ff4addef160 + - 7e387363-920f-40ef-9a44-44c49bd46463 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +388,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "082a3462-33b7-4c34-9e1b-f127b690d768", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "1b712107-cffe-4e0e-b42a-eec4ac85e052", + "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +416,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '414' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:01 GMT + - Tue, 02 Jun 2026 13:05:09 GMT Pragma: - no-cache RequestId: - - 12c7d0d4-d5a2-4dff-aaba-e64038f9b007 + - aadf7f9f-06c7-4c05-bc98-1a3669b90b74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +450,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/082a3462-33b7-4c34-9e1b-f127b690d768 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1b712107-cffe-4e0e-b42a-eec4ac85e052 response: body: - string: '{"id": "082a3462-33b7-4c34-9e1b-f127b690d768", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "1b712107-cffe-4e0e-b42a-eec4ac85e052", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +465,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '151' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:03 GMT + - Tue, 02 Jun 2026 13:05:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 33a353c5-15c7-4239-bf04-857d770024bb + - 5947f410-9dd7-4463-9c7e-534b9b0c3881 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,9 +503,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/082a3462-33b7-4c34-9e1b-f127b690d768/getDefinition?format=ipynb + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1b712107-cffe-4e0e-b42a-eec4ac85e052/getDefinition?format=ipynb response: body: string: 'null' @@ -484,13 +521,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:04 GMT + - Tue, 02 Jun 2026 13:05:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5ff1e61-eed7-43e8-bbb1-5d6f8e9f1f3c + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/59db6456-0f58-437a-8abc-d9f83f58f3ce Pragma: - no-cache RequestId: - - 4f6de2cf-cdca-4517-9448-ad1eba2c88a4 + - e5df6461-2e05-4eca-ac8f-2c714abf8c57 Retry-After: - '20' Strict-Transport-Security: @@ -504,7 +541,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d5ff1e61-eed7-43e8-bbb1-5d6f8e9f1f3c + - 59db6456-0f58-437a-8abc-d9f83f58f3ce status: code: 202 message: Accepted @@ -520,13 +557,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5ff1e61-eed7-43e8-bbb1-5d6f8e9f1f3c + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/59db6456-0f58-437a-8abc-d9f83f58f3ce response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:26:03.9580086", - "lastUpdatedTimeUtc": "2026-04-14T12:26:04.3403986", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:05:11.4825618", + "lastUpdatedTimeUtc": "2026-06-02T13:05:12.2120645", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -536,17 +573,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:24 GMT + - Tue, 02 Jun 2026 13:05:31 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5ff1e61-eed7-43e8-bbb1-5d6f8e9f1f3c/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/59db6456-0f58-437a-8abc-d9f83f58f3ce/result Pragma: - no-cache RequestId: - - 3f4cbbc9-9481-4f78-85a4-66d3642444f4 + - 959dc98b-63db-4d2a-a5a3-09d6a9d2e5ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -554,7 +591,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d5ff1e61-eed7-43e8-bbb1-5d6f8e9f1f3c + - 59db6456-0f58-437a-8abc-d9f83f58f3ce status: code: 200 message: OK @@ -570,14 +607,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5ff1e61-eed7-43e8-bbb1-5d6f8e9f1f3c/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/59db6456-0f58-437a-8abc-d9f83f58f3ce/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.ipynb", "payload": "eyJuYmZvcm1hdCI6NCwibmJmb3JtYXRfbWlub3IiOjUsIm1ldGFkYXRhIjp7Imxhbmd1YWdlX2luZm8iOnsibmFtZSI6InB5dGhvbiJ9LCJrZXJuZWxfaW5mbyI6eyJuYW1lIjoic3luYXBzZV9weXNwYXJrIiwianVweXRlcl9rZXJuZWxfbmFtZSI6bnVsbH0sImEzNjVDb21wdXRlT3B0aW9ucyI6bnVsbCwic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOjAsImRlcGVuZGVuY2llcyI6eyJsYWtlaG91c2UiOm51bGx9fSwiY2VsbHMiOlt7ImNlbGxfdHlwZSI6ImNvZGUiLCJtZXRhZGF0YSI6eyJtaWNyb3NvZnQiOnsibGFuZ3VhZ2UiOiJweXRob24iLCJsYW5ndWFnZV9ncm91cCI6InN5bmFwc2VfcHlzcGFyayJ9fSwic291cmNlIjpbIiMgV2VsY29tZSB0byB5b3VyIG5ldyBub3RlYm9va1xuIiwiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIl0sIm91dHB1dHMiOltdfV19", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -589,11 +626,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:26:24 GMT + - Tue, 02 Jun 2026 13:05:32 GMT Pragma: - no-cache RequestId: - - 8578eb65-0742-4175-8c43-a90c199e4ab8 + - b88a2285-0774-4747-bde8-b8dcfb3ae6bd Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -617,14 +654,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -633,15 +671,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:26 GMT + - Tue, 02 Jun 2026 13:05:33 GMT Pragma: - no-cache RequestId: - - d9a05d66-3210-4c18-97fd-5f7260e7dffb + - ecf03199-39ad-4e41-8507-c45434758434 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -667,14 +705,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "082a3462-33b7-4c34-9e1b-f127b690d768", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "1b712107-cffe-4e0e-b42a-eec4ac85e052", + "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -683,15 +733,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '414' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:27 GMT + - Tue, 02 Jun 2026 13:05:35 GMT Pragma: - no-cache RequestId: - - b4bb7630-6cea-473d-b5ea-198b9e0b6698 + - 3fbb8353-3f87-45b0-aae3-21af1e06e21e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -717,14 +767,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "082a3462-33b7-4c34-9e1b-f127b690d768", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "1b712107-cffe-4e0e-b42a-eec4ac85e052", + "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -733,15 +795,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '414' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:28 GMT + - Tue, 02 Jun 2026 13:05:35 GMT Pragma: - no-cache RequestId: - - 48b9ec5c-62c1-4e2a-8b91-bbfa735d73e8 + - 3064cc4f-0a40-42b8-9c2f-0e5fac2c2db3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -756,10 +818,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "folderId": null, - "displayName": "fabcli000001_new_2", "definition": {"parts": [{"path": "notebook-content.ipynb", - "payload": "ewogICAgIm5iZm9ybWF0IjogNCwKICAgICJuYmZvcm1hdF9taW5vciI6IDUsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgImxhbmd1YWdlX2luZm8iOiB7CiAgICAgICAgICAgICJuYW1lIjogInB5dGhvbiIKICAgICAgICB9LAogICAgICAgICJrZXJuZWxfaW5mbyI6IHsKICAgICAgICAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIiwKICAgICAgICAgICAgImp1cHl0ZXJfa2VybmVsX25hbWUiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAiYTM2NUNvbXB1dGVPcHRpb25zIjogbnVsbCwKICAgICAgICAic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOiAwLAogICAgICAgICJkZXBlbmRlbmNpZXMiOiB7CiAgICAgICAgICAgICJsYWtlaG91c2UiOiBudWxsCiAgICAgICAgfQogICAgfSwKICAgICJjZWxscyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJjZWxsX3R5cGUiOiAiY29kZSIsCiAgICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgICAgICJtaWNyb3NvZnQiOiB7CiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlIjogInB5dGhvbiIsCiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInNvdXJjZSI6IFsKICAgICAgICAgICAgICAgICIjIFdlbGNvbWUgdG8geW91ciBuZXcgbm90ZWJvb2tcbiIsCiAgICAgICAgICAgICAgICAiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIgogICAgICAgICAgICBdLAogICAgICAgICAgICAib3V0cHV0cyI6IFtdCiAgICAgICAgfQogICAgXQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTm90ZWJvb2siLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + body: '{"type": "Notebook", "folderId": null, "displayName": "fabcli000001_new_2", + "definition": {"parts": [{"path": "notebook-content.ipynb", "payload": "ewogICAgIm5iZm9ybWF0IjogNCwKICAgICJuYmZvcm1hdF9taW5vciI6IDUsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgImxhbmd1YWdlX2luZm8iOiB7CiAgICAgICAgICAgICJuYW1lIjogInB5dGhvbiIKICAgICAgICB9LAogICAgICAgICJrZXJuZWxfaW5mbyI6IHsKICAgICAgICAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIiwKICAgICAgICAgICAgImp1cHl0ZXJfa2VybmVsX25hbWUiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAiYTM2NUNvbXB1dGVPcHRpb25zIjogbnVsbCwKICAgICAgICAic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOiAwLAogICAgICAgICJkZXBlbmRlbmNpZXMiOiB7CiAgICAgICAgICAgICJsYWtlaG91c2UiOiBudWxsCiAgICAgICAgfQogICAgfSwKICAgICJjZWxscyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJjZWxsX3R5cGUiOiAiY29kZSIsCiAgICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgICAgICJtaWNyb3NvZnQiOiB7CiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlIjogInB5dGhvbiIsCiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInNvdXJjZSI6IFsKICAgICAgICAgICAgICAgICIjIFdlbGNvbWUgdG8geW91ciBuZXcgbm90ZWJvb2tcbiIsCiAgICAgICAgICAgICAgICAiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIgogICAgICAgICAgICBdLAogICAgICAgICAgICAib3V0cHV0cyI6IFtdCiAgICAgICAgfQogICAgXQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTm90ZWJvb2siLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}], "format": "ipynb"}}' headers: Accept: @@ -769,14 +830,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1884' - + - '1832' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -792,15 +852,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:29 GMT + - Tue, 02 Jun 2026 13:05:37 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd2c39c5-755d-41fc-8af4-c7e54e382be0 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b128f788-0233-4f16-9dd0-884b9e92d632 Pragma: - no-cache RequestId: - - fb7ccf76-5d7b-4ff2-ac64-a5e38c2b8704 + - 4c665114-993b-4be1-beb7-1b98f72ab3e0 Retry-After: - '20' Strict-Transport-Security: @@ -814,7 +874,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - dd2c39c5-755d-41fc-8af4-c7e54e382be0 + - b128f788-0233-4f16-9dd0-884b9e92d632 status: code: 202 message: Accepted @@ -830,13 +890,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd2c39c5-755d-41fc-8af4-c7e54e382be0 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b128f788-0233-4f16-9dd0-884b9e92d632 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:26:29.2227959", - "lastUpdatedTimeUtc": "2026-04-14T12:26:30.4682341", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:05:37.1820109", + "lastUpdatedTimeUtc": "2026-06-02T13:05:38.6300778", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -846,17 +906,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:49 GMT + - Tue, 02 Jun 2026 13:05:58 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd2c39c5-755d-41fc-8af4-c7e54e382be0/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b128f788-0233-4f16-9dd0-884b9e92d632/result Pragma: - no-cache RequestId: - - 7c3c38a0-9b38-4629-8abb-5753ed679e4f + - 68227a87-fe45-4781-af67-3ac357494758 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -864,7 +924,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - dd2c39c5-755d-41fc-8af4-c7e54e382be0 + - b128f788-0233-4f16-9dd0-884b9e92d632 status: code: 200 message: OK @@ -880,14 +940,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd2c39c5-755d-41fc-8af4-c7e54e382be0/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b128f788-0233-4f16-9dd0-884b9e92d632/result response: body: - string: '{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", "type": "Notebook", + "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -898,11 +957,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:26:50 GMT + - Tue, 02 Jun 2026 13:05:58 GMT Pragma: - no-cache RequestId: - - d327925e-9ff1-4eba-b8ea-99b6a63d0c51 + - 8a8a97dd-e807-4ff1-a559-73ada3e40549 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -926,14 +985,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -942,15 +1002,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:51 GMT + - Tue, 02 Jun 2026 13:06:00 GMT Pragma: - no-cache RequestId: - - ad46f7b3-ad4c-4eea-b0c0-b20d76156005 + - 7246d7c0-92b7-470c-9a94-d83febc458b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -976,16 +1036,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "082a3462-33b7-4c34-9e1b-f127b690d768", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "1b712107-cffe-4e0e-b42a-eec4ac85e052", + "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -994,15 +1066,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '229' + - '446' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:52 GMT + - Tue, 02 Jun 2026 13:06:00 GMT Pragma: - no-cache RequestId: - - dfec4c83-1f39-452e-b69e-70f5a63cee3c + - c9e57901-2b36-429f-9955-05061a4f9cf4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1030,9 +1102,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/082a3462-33b7-4c34-9e1b-f127b690d768 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1b712107-cffe-4e0e-b42a-eec4ac85e052 response: body: string: '' @@ -1048,11 +1120,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:26:53 GMT + - Tue, 02 Jun 2026 13:06:01 GMT Pragma: - no-cache RequestId: - - 807542a7-7160-4d78-ac7f-35a6c0c53317 + - d84a692f-1d7a-4121-adb0-fc48a23089d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Reflex].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Reflex].yaml index 28af96dd..03611d93 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Reflex].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Reflex].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:22 GMT + - Tue, 02 Jun 2026 13:13:44 GMT Pragma: - no-cache RequestId: - - faa52633-c397-4c7d-b016-437cd833917e + - 6ad2eee0-e88a-4bd0-9290-6630174f3ce2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,37 +62,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -100,15 +112,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '678' + - '883' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:23 GMT + - Tue, 02 Jun 2026 13:13:45 GMT Pragma: - no-cache RequestId: - - d56bf842-a79a-47a9-9b24-b9abe1ed4aac + - 5112bc05-5c3f-4e07-83e5-787ad3909f50 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -134,39 +146,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -175,15 +196,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '717' + - '883' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:24 GMT + - Tue, 02 Jun 2026 13:13:46 GMT Pragma: - no-cache RequestId: - - a45047fc-9518-46ef-b343-2c2aa7d1ce42 + - 3790e360-f6df-49e7-98e5-73f1a4c1c299 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -208,17 +229,16 @@ interactions: - keep-alive Content-Length: - '71' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/reflexes + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/reflexes response: body: - string: '{"id": "41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "9b3ce5d4-3a29-41dc-8355-db8324304576", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -227,17 +247,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:27 GMT + - Tue, 02 Jun 2026 13:13:49 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5509bc42-758d-44df-98bd-440a2665fce8 + - cf32826e-5319-41d1-b1a1-6cf2e0eea988 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -263,14 +283,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -279,15 +300,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:27 GMT + - Tue, 02 Jun 2026 13:13:50 GMT Pragma: - no-cache RequestId: - - 14546d97-bb20-4614-8b8f-d3ab739c1f84 + - cb827c94-da77-4d26-832b-88fbbbc10ff9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -313,41 +334,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6", - "type": "Reflex", "displayName": "fabcli000001", "description": "Created by - fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9b3ce5d4-3a29-41dc-8355-db8324304576", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -356,15 +388,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '763' + - '955' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:28 GMT + - Tue, 02 Jun 2026 13:13:51 GMT Pragma: - no-cache RequestId: - - 66b5fac9-c0a5-4677-a846-bcc1524a49a1 + - 93ecb33a-7bd4-4444-aa3e-1758a36318a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,13 +422,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9b3ce5d4-3a29-41dc-8355-db8324304576 response: body: - string: '{"id": "41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "9b3ce5d4-3a29-41dc-8355-db8324304576", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -405,17 +437,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:29 GMT + - Tue, 02 Jun 2026 13:13:51 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7cce6dd3-1e07-40ad-b151-48859f3412d6 + - 4186b8c1-8b03-4c12-9692-a3807899e4ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -443,13 +475,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9b3ce5d4-3a29-41dc-8355-db8324304576/getDefinition response: body: string: '{"definition": {"parts": [{"path": "ReflexEntities.json", "payload": - "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -459,15 +491,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '395' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:31 GMT + - Tue, 02 Jun 2026 13:13:54 GMT Pragma: - no-cache RequestId: - - 01c60e30-d726-4099-bf46-3850271f8dcc + - d17cc77b-488f-4c60-b355-3145166532a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -493,14 +525,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -509,15 +542,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:32 GMT + - Tue, 02 Jun 2026 13:13:55 GMT Pragma: - no-cache RequestId: - - 51369eb0-dff2-46b0-8706-36f93d3510a7 + - f362817a-9448-4555-a33c-2a6d367e8abb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -543,41 +576,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6", - "type": "Reflex", "displayName": "fabcli000001", "description": "Created by - fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9b3ce5d4-3a29-41dc-8355-db8324304576", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -586,15 +630,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '763' + - '955' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:33 GMT + - Tue, 02 Jun 2026 13:13:56 GMT Pragma: - no-cache RequestId: - - aa5affde-8a3a-4dd0-bb40-77d925c2c813 + - 6a29e634-fc9a-499a-96ac-df378ab6c2ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,41 +664,52 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6", - "type": "Reflex", "displayName": "fabcli000001", "description": "Created by - fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9b3ce5d4-3a29-41dc-8355-db8324304576", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -663,15 +718,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '763' + - '955' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:33 GMT + - Tue, 02 Jun 2026 13:13:56 GMT Pragma: - no-cache RequestId: - - 17696dcb-6623-48c9-855d-1079c23372d1 + - 223276e1-562d-4cd6-9c93-8b217411f4d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -686,7 +741,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Reflex", "folderId": null, "displayName": "fabcli000001_new_11", "definition": {"parts": [{"path": "ReflexEntities.json", "payload": "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiUmVmbGV4IiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}]}}' + body: '{"type": "Reflex", "folderId": null, "displayName": "fabcli000001_new_11", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiUmVmbGV4IiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": "ReflexEntities.json", "payload": "W10=", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -695,19 +753,17 @@ interactions: Connection: - keep-alive Content-Length: - - '749' - + - '693' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", "type": "Reflex", "displayName": - "fabcli000001_new_11", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -716,17 +772,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:37 GMT + - Tue, 02 Jun 2026 13:14:01 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ecd5a1c9-cf36-439d-bd59-d3500f260f61 + - b4318545-b772-4d29-98cd-3ef5cfdc95dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -752,14 +808,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -768,15 +825,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:38 GMT + - Tue, 02 Jun 2026 13:14:02 GMT Pragma: - no-cache RequestId: - - f7c547e5-1a82-422a-86bc-cc3dbebd4f60 + - c399b2e7-c91c-4bfb-83f1-c9ab33f487ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -802,43 +859,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6", - "type": "Reflex", "displayName": "fabcli000001", "description": "Created by - fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9b3ce5d4-3a29-41dc-8355-db8324304576", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -847,15 +915,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '793' + - '985' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:34:39 GMT + - Tue, 02 Jun 2026 13:14:03 GMT Pragma: - no-cache RequestId: - - 7331e597-595e-44c3-9eb8-d96e4546b68d + - f1f431ef-fd63-4b5b-9a7c-94f5e448180e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -883,9 +951,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/41ff68dd-cca8-4a1c-80ce-d09bb6d8f5a6 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9b3ce5d4-3a29-41dc-8355-db8324304576 response: body: string: '' @@ -901,11 +969,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:34:40 GMT + - Tue, 02 Jun 2026 13:14:03 GMT Pragma: - no-cache RequestId: - - e10839be-ba56-47c0-9fa3-bc5a01d80041 + - 7d0500ac-14ca-41d5-b309-9b7edfb8407d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Report].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Report].yaml index b9d11b5d..0edd996f 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Report].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[Report].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:26 GMT + - Tue, 02 Jun 2026 13:06:38 GMT Pragma: - no-cache RequestId: - - 8f0cd24c-dde5-4def-9feb-641dd3ba7af3 + - d478067b-2667-44ef-ac68-b628a5cea880 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,17 +62,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -80,15 +94,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '521' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:26 GMT + - Tue, 02 Jun 2026 13:06:39 GMT Pragma: - no-cache RequestId: - - 36d4d449-9a33-439b-92f1-d317542bde69 + - 9e44c890-f457-43cd-9b0f-1a93e0554371 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -114,17 +128,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", - "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -133,15 +160,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '521' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:27 GMT + - Tue, 02 Jun 2026 13:06:40 GMT Pragma: - no-cache RequestId: - - 324fd128-bd9c-42a5-98c6-b5c97b83bd12 + - 476551d6-d578-4973-97e3-0fa30c3e68cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,7 +183,15 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001_auto", "type": "SemanticModel", "folderId": null, "definition": {"parts": [{"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNlbWFudGljTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogIkJsYW5rIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "definition.pbism", "payload": "ewogICJ2ZXJzaW9uIjogIjQuMCIsCiAgInNldHRpbmdzIjoge30KfQ==", "payloadType": "InlineBase64"}, {"path": "definition/database.tmdl", "payload": "ZGF0YWJhc2UKCWNvbXBhdGliaWxpdHlMZXZlbDogMTU2MQoK", "payloadType": "InlineBase64"}, {"path": "definition/model.tmdl", "payload": "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxl", "payloadType": "InlineBase64"}, {"path": "definition/tables/Table.tmdl", "payload": "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000001_auto", "type": "SemanticModel", "folderId": + null, "definition": {"parts": [{"path": "definition.pbism", "payload": "ewogICJ2ZXJzaW9uIjogIjQuMCIsCiAgInNldHRpbmdzIjoge30KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNlbWFudGljTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogIkJsYW5rIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "definition/model.tmdl", "payload": + "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxl", + "payloadType": "InlineBase64"}, {"path": "definition/database.tmdl", "payload": + "ZGF0YWJhc2UKCWNvbXBhdGliaWxpdHlMZXZlbDogMTU2MQoK", "payloadType": "InlineBase64"}, + {"path": "definition/tables/Table.tmdl", "payload": "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -166,13 +201,12 @@ interactions: - keep-alive Content-Length: - '2640' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/semanticModels + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/semanticModels response: body: string: 'null' @@ -188,13 +222,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:29 GMT + - Tue, 02 Jun 2026 13:06:41 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a62cccc-4902-4b3a-9bb0-e093e31fa3a4 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/457080f9-bf82-487b-8300-929dd73bd464 Pragma: - no-cache RequestId: - - c7988840-d37d-46e2-82b8-7b0bb7e31d98 + - 79f3b188-f856-4655-a586-b67a77a98b49 Retry-After: - '20' Strict-Transport-Security: @@ -208,7 +242,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 6a62cccc-4902-4b3a-9bb0-e093e31fa3a4 + - 457080f9-bf82-487b-8300-929dd73bd464 status: code: 202 message: Accepted @@ -224,13 +258,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a62cccc-4902-4b3a-9bb0-e093e31fa3a4 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/457080f9-bf82-487b-8300-929dd73bd464 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:27:29.0437253", - "lastUpdatedTimeUtc": "2026-04-14T12:27:39.6748664", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:06:41.5640488", + "lastUpdatedTimeUtc": "2026-06-02T13:06:53.0282513", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -240,17 +274,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:49 GMT + - Tue, 02 Jun 2026 13:07:02 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a62cccc-4902-4b3a-9bb0-e093e31fa3a4/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/457080f9-bf82-487b-8300-929dd73bd464/result Pragma: - no-cache RequestId: - - ed41df04-6b96-46d3-a5e1-05863fcf8f6a + - 683ae7f9-bca7-4ca3-a817-ffe13aee7b95 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -258,7 +292,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 6a62cccc-4902-4b3a-9bb0-e093e31fa3a4 + - 457080f9-bf82-487b-8300-929dd73bd464 status: code: 200 message: OK @@ -274,13 +308,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6a62cccc-4902-4b3a-9bb0-e093e31fa3a4/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/457080f9-bf82-487b-8300-929dd73bd464/result response: body: - string: '{"id": "1b330f3e-8f48-4026-a21a-bc5817181881", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -291,11 +325,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:27:49 GMT + - Tue, 02 Jun 2026 13:07:02 GMT Pragma: - no-cache RequestId: - - 3684a503-bd84-47d3-8c23-0deca4c2a830 + - df2a33f0-9b8d-4a03-9bb0-2da0a894c7dd Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -308,20 +342,19 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": - "Report", "folderId": null, "definition": {"parts": [{"path": ".platform", "payload": - "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlcG9ydCIsCiAgICAiZGlzcGxheU5hbWUiOiAiQmxhbmsiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", - "payloadType": "InlineBase64"}, {"path": "definition.pbir", "payload": "eyJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieVBhdGgiOiBudWxsLCAiYnlDb25uZWN0aW9uIjogeyJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9ta2RpcjtJbml0aWFsIENhdGFsb2c9cjM7SW50ZWdyYXRlZCBTZWN1cml0eT1DbGFpbXNUb2tlbiIsICJwYmlTZXJ2aWNlTW9kZWxJZCI6IG51bGwsICJwYmlNb2RlbFZpcnR1YWxTZXJ2ZXJOYW1lIjogInNvYmVfd293dmlydHVhbHNlcnZlciIsICJwYmlNb2RlbERhdGFiYXNlTmFtZSI6ICIxYjMzMGYzZS04ZjQ4LTQwMjYtYTIxYS1iYzU4MTcxODE4ODEiLCAibmFtZSI6ICJFbnRpdHlEYXRhU291cmNlIiwgImNvbm5lY3Rpb25UeXBlIjogInBiaVNlcnZpY2VYbWxhU3R5bGVMaXZlIn19fQ==", - "payloadType": "InlineBase64"}, {"path": "definition/report.json", "payload": - "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3JlcG9ydC8xLjIuMC9zY2hlbWEuanNvbiIsCiAgInRoZW1lQ29sbGVjdGlvbiI6IHsKICAgICJiYXNlVGhlbWUiOiB7CiAgICAgICJuYW1lIjogIkNZMjRTVTEwIiwKICAgICAgInJlcG9ydFZlcnNpb25BdEltcG9ydCI6ICI1LjYxIiwKICAgICAgInR5cGUiOiAiU2hhcmVkUmVzb3VyY2VzIgogICAgfQogIH0sCiAgImxheW91dE9wdGltaXphdGlvbiI6ICJOb25lIiwKICAib2JqZWN0cyI6IHsKICAgICJzZWN0aW9uIjogWwogICAgICB7CiAgICAgICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgICAidmVydGljYWxBbGlnbm1lbnQiOiB7CiAgICAgICAgICAgICJleHByIjogewogICAgICAgICAgICAgICJMaXRlcmFsIjogewogICAgICAgICAgICAgICAgIlZhbHVlIjogIidUb3AnIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfQogICAgICAgICAgfQogICAgICAgIH0KICAgICAgfQogICAgXQogIH0sCiAgInJlc291cmNlUGFja2FnZXMiOiBbCiAgICB7CiAgICAgICJuYW1lIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJ0eXBlIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAibmFtZSI6ICJDWTI0U1UxMCIsCiAgICAgICAgICAicGF0aCI6ICJCYXNlVGhlbWVzL0NZMjRTVTEwLmpzb24iLAogICAgICAgICAgInR5cGUiOiAiQmFzZVRoZW1lIgogICAgICAgIH0KICAgICAgXQogICAgfQogIF0sCiAgInNldHRpbmdzIjogewogICAgInVzZVN0eWxhYmxlVmlzdWFsQ29udGFpbmVySGVhZGVyIjogdHJ1ZSwKICAgICJkZWZhdWx0RHJpbGxGaWx0ZXJPdGhlclZpc3VhbHMiOiB0cnVlLAogICAgImFsbG93Q2hhbmdlRmlsdGVyVHlwZXMiOiB0cnVlLAogICAgInVzZUVuaGFuY2VkVG9vbHRpcHMiOiB0cnVlLAogICAgInVzZURlZmF1bHRBZ2dyZWdhdGVEaXNwbGF5TmFtZSI6IHRydWUKICB9Cn0=", + body: '{"displayName": "fabcli000001", "type": "Report", "folderId": null, "definition": + {"parts": [{"path": "definition.pbir", "payload": "eyJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieVBhdGgiOiBudWxsLCAiYnlDb25uZWN0aW9uIjogeyJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9ta2RpcjtJbml0aWFsIENhdGFsb2c9cjM7SW50ZWdyYXRlZCBTZWN1cml0eT1DbGFpbXNUb2tlbiIsICJwYmlTZXJ2aWNlTW9kZWxJZCI6IG51bGwsICJwYmlNb2RlbFZpcnR1YWxTZXJ2ZXJOYW1lIjogInNvYmVfd293dmlydHVhbHNlcnZlciIsICJwYmlNb2RlbERhdGFiYXNlTmFtZSI6ICIzMzUxZWIxMC01ZjM4LTRjNzctODIzYy04Yzc3OTM5OTEwMGMiLCAibmFtZSI6ICJFbnRpdHlEYXRhU291cmNlIiwgImNvbm5lY3Rpb25UeXBlIjogInBiaVNlcnZpY2VYbWxhU3R5bGVMaXZlIn19fQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlcG9ydCIsCiAgICAiZGlzcGxheU5hbWUiOiAiQmxhbmsiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", + "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3ZlcnNpb25NZXRhZGF0YS8xLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiMi4wLjAiCn0=", + "payloadType": "InlineBase64"}, {"path": "definition/report.json", "payload": + "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3JlcG9ydC8xLjIuMC9zY2hlbWEuanNvbiIsCiAgInRoZW1lQ29sbGVjdGlvbiI6IHsKICAgICJiYXNlVGhlbWUiOiB7CiAgICAgICJuYW1lIjogIkNZMjRTVTEwIiwKICAgICAgInJlcG9ydFZlcnNpb25BdEltcG9ydCI6ICI1LjYxIiwKICAgICAgInR5cGUiOiAiU2hhcmVkUmVzb3VyY2VzIgogICAgfQogIH0sCiAgImxheW91dE9wdGltaXphdGlvbiI6ICJOb25lIiwKICAib2JqZWN0cyI6IHsKICAgICJzZWN0aW9uIjogWwogICAgICB7CiAgICAgICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgICAidmVydGljYWxBbGlnbm1lbnQiOiB7CiAgICAgICAgICAgICJleHByIjogewogICAgICAgICAgICAgICJMaXRlcmFsIjogewogICAgICAgICAgICAgICAgIlZhbHVlIjogIidUb3AnIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfQogICAgICAgICAgfQogICAgICAgIH0KICAgICAgfQogICAgXQogIH0sCiAgInJlc291cmNlUGFja2FnZXMiOiBbCiAgICB7CiAgICAgICJuYW1lIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJ0eXBlIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAibmFtZSI6ICJDWTI0U1UxMCIsCiAgICAgICAgICAicGF0aCI6ICJCYXNlVGhlbWVzL0NZMjRTVTEwLmpzb24iLAogICAgICAgICAgInR5cGUiOiAiQmFzZVRoZW1lIgogICAgICAgIH0KICAgICAgXQogICAgfQogIF0sCiAgInNldHRpbmdzIjogewogICAgInVzZVN0eWxhYmxlVmlzdWFsQ29udGFpbmVySGVhZGVyIjogdHJ1ZSwKICAgICJkZWZhdWx0RHJpbGxGaWx0ZXJPdGhlclZpc3VhbHMiOiB0cnVlLAogICAgImFsbG93Q2hhbmdlRmlsdGVyVHlwZXMiOiB0cnVlLAogICAgInVzZUVuaGFuY2VkVG9vbHRpcHMiOiB0cnVlLAogICAgInVzZURlZmF1bHRBZ2dyZWdhdGVEaXNwbGF5TmFtZSI6IHRydWUKICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "definition/pages/pages.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3BhZ2VzTWV0YWRhdGEvMS4wLjAvc2NoZW1hLmpzb24iLAogICJwYWdlT3JkZXIiOiBbCiAgICAiYjhjNWZiOGQ2MzVmODk4MzI2YzYiCiAgXSwKICAiYWN0aXZlUGFnZU5hbWUiOiAiYjhjNWZiOGQ2MzVmODk4MzI2YzYiCn0=", "payloadType": "InlineBase64"}, {"path": "definition/pages/b8c5fb8d635f898326c6/page.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3BhZ2UvMS4zLjAvc2NoZW1hLmpzb24iLAogICJuYW1lIjogImI4YzVmYjhkNjM1Zjg5ODMyNmM2IiwKICAiZGlzcGxheU5hbWUiOiAiUGFnZSAxIiwKICAiZGlzcGxheU9wdGlvbiI6ICJGaXRUb1BhZ2UiLAogICJoZWlnaHQiOiA3MjAsCiAgIndpZHRoIjogMTI4MAp9", - "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", - "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -332,13 +365,12 @@ interactions: - keep-alive Content-Length: - '21761' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/reports + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/reports response: body: string: 'null' @@ -354,13 +386,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:52 GMT + - Tue, 02 Jun 2026 13:07:04 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36908fd1-7826-4507-9640-e9c455983cb6 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5434bdd9-cb59-455a-8e0c-355fe2804704 Pragma: - no-cache RequestId: - - 24a1dfec-6107-4662-b5b1-d3cb588f3abb + - 32712a56-821a-45bf-a122-2802b9c8b046 Retry-After: - '20' Strict-Transport-Security: @@ -374,7 +406,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 36908fd1-7826-4507-9640-e9c455983cb6 + - 5434bdd9-cb59-455a-8e0c-355fe2804704 status: code: 202 message: Accepted @@ -390,13 +422,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36908fd1-7826-4507-9640-e9c455983cb6 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5434bdd9-cb59-455a-8e0c-355fe2804704 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:27:52.9625966", - "lastUpdatedTimeUtc": "2026-04-14T12:27:53.3784377", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:07:04.8752233", + "lastUpdatedTimeUtc": "2026-06-02T13:07:05.2629953", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -406,17 +438,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:13 GMT + - Tue, 02 Jun 2026 13:07:25 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36908fd1-7826-4507-9640-e9c455983cb6/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5434bdd9-cb59-455a-8e0c-355fe2804704/result Pragma: - no-cache RequestId: - - 22ef0f66-5555-4aea-88fd-b508c38c645a + - 1d82ef58-9d5c-43d0-81ba-a1cd3bba9c33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -424,7 +456,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 36908fd1-7826-4507-9640-e9c455983cb6 + - 5434bdd9-cb59-455a-8e0c-355fe2804704 status: code: 200 message: OK @@ -440,13 +472,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/36908fd1-7826-4507-9640-e9c455983cb6/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5434bdd9-cb59-455a-8e0c-355fe2804704/result response: body: - string: '{"id": "58d1862e-e39d-4e35-8eff-f1f362e6bb17", "type": "Report", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "3c7a142d-5f50-46d0-8e81-106112c42b01", "type": "Report", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -457,11 +489,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:28:14 GMT + - Tue, 02 Jun 2026 13:07:26 GMT Pragma: - no-cache RequestId: - - 9e7f8103-4789-4f8b-99e7-988835b12222 + - 9eced887-3cda-4ebc-9a34-bb3e052a6e1f Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -485,14 +517,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -501,15 +534,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2165' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:15 GMT + - Tue, 02 Jun 2026 13:07:27 GMT Pragma: - no-cache RequestId: - - 5908945c-6bf6-4aaa-ad59-737a5a8b7a1b + - 5d735f35-9a35-4627-bc0b-d2a5797bfe97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -535,22 +568,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "58d1862e-e39d-4e35-8eff-f1f362e6bb17", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "3c7a142d-5f50-46d0-8e81-106112c42b01", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -559,15 +604,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '395' + - '600' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:16 GMT + - Tue, 02 Jun 2026 13:07:27 GMT Pragma: - no-cache RequestId: - - 65053c97-0e9a-4f0f-aa4a-73f9dc24c9bb + - 39d21de8-63d2-4115-a167-cd5d8d53def2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -593,13 +638,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/58d1862e-e39d-4e35-8eff-f1f362e6bb17 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/3c7a142d-5f50-46d0-8e81-106112c42b01 response: body: - string: '{"id": "58d1862e-e39d-4e35-8eff-f1f362e6bb17", "type": "Report", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "3c7a142d-5f50-46d0-8e81-106112c42b01", "type": "Report", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -608,17 +653,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:16 GMT + - Tue, 02 Jun 2026 13:07:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5180c45e-b79c-4e9e-bcb9-36711786c16e + - 6b5cc4c5-e108-45f2-a41f-6602c7cd76e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -646,9 +691,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/58d1862e-e39d-4e35-8eff-f1f362e6bb17/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/3c7a142d-5f50-46d0-8e81-106112c42b01/getDefinition response: body: string: 'null' @@ -664,13 +709,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:18 GMT + - Tue, 02 Jun 2026 13:07:30 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1daa092f-477f-42b6-bb13-7415047ebdc4 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5f78172f-9459-4f7a-9744-194a7c1f4084 Pragma: - no-cache RequestId: - - 08e8309f-694d-4840-9319-4e54e1bc95a8 + - 8b626079-c38e-4878-9de7-e822459cf499 Retry-After: - '20' Strict-Transport-Security: @@ -684,7 +729,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 1daa092f-477f-42b6-bb13-7415047ebdc4 + - 5f78172f-9459-4f7a-9744-194a7c1f4084 status: code: 202 message: Accepted @@ -700,13 +745,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1daa092f-477f-42b6-bb13-7415047ebdc4 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5f78172f-9459-4f7a-9744-194a7c1f4084 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:28:18.2378925", - "lastUpdatedTimeUtc": "2026-04-14T12:28:18.5326723", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:07:30.3166504", + "lastUpdatedTimeUtc": "2026-06-02T13:07:30.6144092", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -716,17 +761,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:38 GMT + - Tue, 02 Jun 2026 13:07:51 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1daa092f-477f-42b6-bb13-7415047ebdc4/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5f78172f-9459-4f7a-9744-194a7c1f4084/result Pragma: - no-cache RequestId: - - 74064689-8f56-4689-bcb2-9e4161af3e78 + - 54dd3f12-e2e4-42ba-9e6b-4311c624beb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -734,7 +779,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 1daa092f-477f-42b6-bb13-7415047ebdc4 + - 5f78172f-9459-4f7a-9744-194a7c1f4084 status: code: 200 message: OK @@ -750,13 +795,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1daa092f-477f-42b6-bb13-7415047ebdc4/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5f78172f-9459-4f7a-9744-194a7c1f4084/result response: body: string: '{"definition": {"format": "PBIR", "parts": [{"path": "definition.pbir", - "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAxX2F1dG87aW50ZWdyYXRlZCBzZWN1cml0eT1DbGFpbXNUb2tlbjtzZW1hbnRpY21vZGVsaWQ9MWIzMzBmM2UtOGY0OC00MDI2LWEyMWEtYmM1ODE3MTgxODgxIgogICAgfQogIH0KfQ==", + "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAxX2F1dG87aW50ZWdyYXRlZCBzZWN1cml0eT1DbGFpbXNUb2tlbjtzZW1hbnRpY21vZGVsaWQ9MzM1MWViMTAtNWYzOC00Yzc3LTgyM2MtOGM3NzkzOTkxMDBjIgogICAgfQogIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -767,7 +812,7 @@ interactions: "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3BhZ2VzTWV0YWRhdGEvMS4wLjAvc2NoZW1hLmpzb24iLAogICJwYWdlT3JkZXIiOiBbCiAgICAiYjhjNWZiOGQ2MzVmODk4MzI2YzYiCiAgXSwKICAiYWN0aXZlUGFnZU5hbWUiOiAiYjhjNWZiOGQ2MzVmODk4MzI2YzYiCn0=", "payloadType": "InlineBase64"}, {"path": "definition/pages/b8c5fb8d635f898326c6/page.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3BhZ2UvMS4zLjAvc2NoZW1hLmpzb24iLAogICJuYW1lIjogImI4YzVmYjhkNjM1Zjg5ODMyNmM2IiwKICAiZGlzcGxheU5hbWUiOiAiUGFnZSAxIiwKICAiZGlzcGxheU9wdGlvbiI6ICJGaXRUb1BhZ2UiLAogICJoZWlnaHQiOiA3MjAsCiAgIndpZHRoIjogMTI4MAp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlcG9ydCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlcG9ydCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -779,11 +824,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:28:39 GMT + - Tue, 02 Jun 2026 13:07:53 GMT Pragma: - no-cache RequestId: - - 4071cc99-ec4c-47fa-9612-84df63f03153 + - 3ca0ebf5-d9b0-4c4d-b2de-03f945a9a3f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -807,14 +852,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -823,15 +869,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:41 GMT + - Tue, 02 Jun 2026 13:07:53 GMT Pragma: - no-cache RequestId: - - 0a6ee967-c24c-45be-be1d-7e6f15b0d844 + - b49a8813-3277-42a9-a467-98140d178a8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -857,22 +903,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "58d1862e-e39d-4e35-8eff-f1f362e6bb17", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "3c7a142d-5f50-46d0-8e81-106112c42b01", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -881,15 +939,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '395' + - '600' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:41 GMT + - Tue, 02 Jun 2026 13:07:54 GMT Pragma: - no-cache RequestId: - - f30b6d14-99f0-445e-8a9c-386e1b68aa86 + - a78b42f1-c9a0-430d-ae12-e9348a2e4b68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -915,22 +973,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "58d1862e-e39d-4e35-8eff-f1f362e6bb17", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "3c7a142d-5f50-46d0-8e81-106112c42b01", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -939,15 +1009,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '395' + - '600' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:43 GMT + - Tue, 02 Jun 2026 13:07:55 GMT Pragma: - no-cache RequestId: - - 0a486bec-2edd-4175-a9b5-2183a93f10b7 + - 5cb602bc-a10d-46fa-a839-20959ef99943 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -962,20 +1032,19 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Report", "folderId": null, - "displayName": "fabcli000001_new_5", "definition": {"parts": [{"path": "definition.pbir", - "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb25Qcm9wZXJ0aWVzLzIuMC4wL3NjaGVtYS5qc29uIiwKICAgICJ2ZXJzaW9uIjogIjQuMCIsCiAgICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICAgICAiYnlDb25uZWN0aW9uIjogewogICAgICAgICAgICAiY29ubmVjdGlvblN0cmluZyI6ICJEYXRhIFNvdXJjZT1wb3dlcmJpOi8vYXBpLnBvd2VyYmkuY29tL3YxLjAvbXlvcmcvZmFicmljY2xpX1dvcmtzcGFjZVBlclRlc3RjbGFzc18wMDAwMDE7aW5pdGlhbCBjYXRhbG9nPWZhYmNsaTAwMDAwMV9hdXRvO2ludGVncmF0ZWQgc2VjdXJpdHk9Q2xhaW1zVG9rZW47c2VtYW50aWNtb2RlbGlkPTFiMzMwZjNlLThmNDgtNDAyNi1hMjFhLWJjNTgxNzE4MTg4MSIKICAgICAgICB9CiAgICB9Cn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiUmVwb3J0IiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", - "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": - "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb24vdmVyc2lvbk1ldGFkYXRhLzEuMC4wL3NjaGVtYS5qc29uIiwKICAgICJ2ZXJzaW9uIjogIjIuMC4wIgp9", + body: '{"type": "Report", "folderId": null, "displayName": "fabcli000001_new_5", + "definition": {"parts": [{"path": "definition.pbir", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb25Qcm9wZXJ0aWVzLzIuMC4wL3NjaGVtYS5qc29uIiwKICAgICJ2ZXJzaW9uIjogIjQuMCIsCiAgICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICAgICAiYnlDb25uZWN0aW9uIjogewogICAgICAgICAgICAiY29ubmVjdGlvblN0cmluZyI6ICJEYXRhIFNvdXJjZT1wb3dlcmJpOi8vYXBpLnBvd2VyYmkuY29tL3YxLjAvbXlvcmcvZmFicmljY2xpX1dvcmtzcGFjZVBlclRlc3RjbGFzc18wMDAwMDE7aW5pdGlhbCBjYXRhbG9nPWZhYmNsaTAwMDAwMV9hdXRvO2ludGVncmF0ZWQgc2VjdXJpdHk9Q2xhaW1zVG9rZW47c2VtYW50aWNtb2RlbGlkPTMzNTFlYjEwLTVmMzgtNGM3Ny04MjNjLThjNzc5Mzk5MTAwYyIKICAgICAgICB9CiAgICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiUmVwb3J0IiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", + "payload": "ewogICAgIm5hbWUiOiAiQ1kyNFNVMTAiLAogICAgImRhdGFDb2xvcnMiOiBbCiAgICAgICAgIiMxMThERkYiLAogICAgICAgICIjMTIyMzlFIiwKICAgICAgICAiI0U2NkMzNyIsCiAgICAgICAgIiM2QjAwN0IiLAogICAgICAgICIjRTA0NEE3IiwKICAgICAgICAiIzc0NEVDMiIsCiAgICAgICAgIiNEOUIzMDAiLAogICAgICAgICIjRDY0NTUwIiwKICAgICAgICAiIzE5NzI3OCIsCiAgICAgICAgIiMxQUFCNDAiLAogICAgICAgICIjMTVDNkY0IiwKICAgICAgICAiIzQwOTJGRiIsCiAgICAgICAgIiNGRkEwNTgiLAogICAgICAgICIjQkU1REM5IiwKICAgICAgICAiI0Y0NzJEMCIsCiAgICAgICAgIiNCNUExRkYiLAogICAgICAgICIjQzRBMjAwIiwKICAgICAgICAiI0ZGODA4MCIsCiAgICAgICAgIiMwMERCQkMiLAogICAgICAgICIjNUJENjY3IiwKICAgICAgICAiIzAwOTFENSIsCiAgICAgICAgIiM0NjY4QzUiLAogICAgICAgICIjRkY2MzAwIiwKICAgICAgICAiIzk5MDA4QSIsCiAgICAgICAgIiNFQzAwOEMiLAogICAgICAgICIjNTMzMjg1IiwKICAgICAgICAiIzk5NzAwQSIsCiAgICAgICAgIiNGRjQxNDEiLAogICAgICAgICIjMUY5QTg1IiwKICAgICAgICAiIzI1ODkxQyIsCiAgICAgICAgIiMwMDU3QTIiLAogICAgICAgICIjMDAyMDUwIiwKICAgICAgICAiI0M5NEYwRiIsCiAgICAgICAgIiM0NTBGNTQiLAogICAgICAgICIjQjYwMDY0IiwKICAgICAgICAiIzM0MTI0RiIsCiAgICAgICAgIiM2QTVBMjkiLAogICAgICAgICIjMUFBQjQwIiwKICAgICAgICAiI0JBMTQxQSIsCiAgICAgICAgIiMwQzNEMzciLAogICAgICAgICIjMEI1MTFGIgogICAgXSwKICAgICJmb3JlZ3JvdW5kIjogIiMyNTI0MjMiLAogICAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICAgImZvcmVncm91bmROZXV0cmFsVGVydGlhcnkiOiAiI0IzQjBBRCIsCiAgICAiYmFja2dyb3VuZCI6ICIjRkZGRkZGIiwKICAgICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgICAiYmFja2dyb3VuZE5ldXRyYWwiOiAiI0M4QzZDNCIsCiAgICAidGFibGVBY2NlbnQiOiAiIzExOERGRiIsCiAgICAiZ29vZCI6ICIjMUFBQjQwIiwKICAgICJuZXV0cmFsIjogIiNEOUIzMDAiLAogICAgImJhZCI6ICIjRDY0NTU0IiwKICAgICJtYXhpbXVtIjogIiMxMThERkYiLAogICAgImNlbnRlciI6ICIjRDlCMzAwIiwKICAgICJtaW5pbXVtIjogIiNERUVGRkYiLAogICAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgICAiaHlwZXJsaW5rIjogIiMwMDc4ZDQiLAogICAgInZpc2l0ZWRIeXBlcmxpbmsiOiAiIzAwNzhkNCIsCiAgICAidGV4dENsYXNzZXMiOiB7CiAgICAgICAgImNhbGxvdXQiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDQ1LAogICAgICAgICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAidGl0bGUiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAgICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAiaGVhZGVyIjogewogICAgICAgICAgICAiZm9udFNpemUiOiAxMiwKICAgICAgICAgICAgImZvbnRGYWNlIjogIlNlZ29lIFVJIFNlbWlib2xkIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAibGFiZWwiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDEwLAogICAgICAgICAgICAiZm9udEZhY2UiOiAiU2Vnb2UgVUkiLAogICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICB9CiAgICB9LAogICAgInZpc3VhbFN0eWxlcyI6IHsKICAgICAgICAiKiI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiKiI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ3b3JkV3JhcCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0F4aXNUaXRsZSI6IHRydWUsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkbGluZVN0eWxlIjogImRvdHRlZCIsCiAgICAgICAgICAgICAgICAgICAgICAgICJjb25jYXRlbmF0ZUxhYmVscyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0F4aXNUaXRsZSI6IHRydWUsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkbGluZVN0eWxlIjogImRvdHRlZCIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAidGl0bGVXcmFwIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzdHJva2VXaWR0aCI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgIndpZHRoIjogMQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiI2ZmZmZmZiIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImZpbHRlckNhcmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiJGlkIjogIkFwcGxpZWQiLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgImJvcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgImJvcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzY2F0dGVyQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYnViYmxlU2l6ZSI6IC0xMCwKICAgICAgICAgICAgICAgICAgICAgICAgIm1hcmtlclJhbmdlVHlwZSI6ICJhdXRvIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImxpbmVDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJmb3JlY2FzdCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAibWFwIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJidWJibGVzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJ1YmJsZVNpemUiOiAtMTAsCiAgICAgICAgICAgICAgICAgICAgICAgICJtYXJrZXJSYW5nZVR5cGUiOiAiYXV0byIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJhenVyZU1hcCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgICAgICAgICAgICAgIm1pbkJ1YmJsZVJhZGl1cyI6IDgsCiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhSYWRpdXMiOiA0MAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFySGVpZ2h0IjogMywKICAgICAgICAgICAgICAgICAgICAgICAgInRoaWNrbmVzcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwaWVDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImRvbnV0Q2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogdHJ1ZSwKICAgICAgICAgICAgICAgICAgICAgICAgInBvc2l0aW9uIjogIlJpZ2h0Q2VudGVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImxhYmVsU3R5bGUiOiAiRGF0YSB2YWx1ZSwgcGVyY2VudCBvZiB0b3RhbCIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwaXZvdFRhYmxlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dFeHBhbmRDb2xsYXBzZUJ1dHRvbnMiOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAibGVnYWN5U3R5bGVEaXNhYmxlZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImNhcmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJrcGkiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgInRyZW5kbGluZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAyMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImNhcmRWaXN1YWwiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhUaWxlcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJmaXhlZFNpemUiOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYWR2YW5jZWRTbGljZXJWaXN1YWwiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhUaWxlcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzbGljZXIiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiaGlkZURhdGVQaWNrZXJCdXR0b24iOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicGFkZGluZyI6IDQsCiAgICAgICAgICAgICAgICAgICAgICAgICJhY2Nlc3NpYmlsaXR5Q29udHJhc3RQcm9wZXJ0aWVzIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiY29sdW1uQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJjbHVzdGVyZWRDb2x1bW5DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dHcmFkaWVudExlZ2VuZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYmFyQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJjbHVzdGVyZWRCYXJDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dHcmFkaWVudExlZ2VuZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYXJlYUNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzdGFja2VkQXJlYUNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAibGluZVN0YWNrZWRDb2x1bW5Db21ib0NoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJyaWJib25DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImdyb3VwIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImJhc2ljU2hhcGUiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgInNoYXBlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJpbWFnZSI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsb2NrQXNwZWN0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYWN0aW9uQnV0dG9uIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYm9va21hcmtOYXZpZ2F0b3IiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAidGV4dGJveCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwYWdlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJvdXRzcGFjZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAxMDAKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9CiAgICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "definition/report.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb24vcmVwb3J0LzEuMi4wL3NjaGVtYS5qc29uIiwKICAgICJ0aGVtZUNvbGxlY3Rpb24iOiB7CiAgICAgICAgImJhc2VUaGVtZSI6IHsKICAgICAgICAgICAgIm5hbWUiOiAiQ1kyNFNVMTAiLAogICAgICAgICAgICAicmVwb3J0VmVyc2lvbkF0SW1wb3J0IjogIjUuNjEiLAogICAgICAgICAgICAidHlwZSI6ICJTaGFyZWRSZXNvdXJjZXMiCiAgICAgICAgfQogICAgfSwKICAgICJsYXlvdXRPcHRpbWl6YXRpb24iOiAiTm9uZSIsCiAgICAib2JqZWN0cyI6IHsKICAgICAgICAic2VjdGlvbiI6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAgICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgICAgICAgICAgICAgInZlcnRpY2FsQWxpZ25tZW50IjogewogICAgICAgICAgICAgICAgICAgICAgICAiZXhwciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJMaXRlcmFsIjogewogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJWYWx1ZSI6ICInVG9wJyIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfQogICAgICAgIF0KICAgIH0sCiAgICAicmVzb3VyY2VQYWNrYWdlcyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJuYW1lIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICAgICAgICJ0eXBlIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICAgICAgICJpdGVtcyI6IFsKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJDWTI0U1UxMCIsCiAgICAgICAgICAgICAgICAgICAgInBhdGgiOiAiQmFzZVRoZW1lcy9DWTI0U1UxMC5qc29uIiwKICAgICAgICAgICAgICAgICAgICAidHlwZSI6ICJCYXNlVGhlbWUiCiAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgIF0KICAgICAgICB9CiAgICBdLAogICAgInNldHRpbmdzIjogewogICAgICAgICJ1c2VTdHlsYWJsZVZpc3VhbENvbnRhaW5lckhlYWRlciI6IHRydWUsCiAgICAgICAgImRlZmF1bHREcmlsbEZpbHRlck90aGVyVmlzdWFscyI6IHRydWUsCiAgICAgICAgImFsbG93Q2hhbmdlRmlsdGVyVHlwZXMiOiB0cnVlLAogICAgICAgICJ1c2VFbmhhbmNlZFRvb2x0aXBzIjogdHJ1ZSwKICAgICAgICAidXNlRGVmYXVsdEFnZ3JlZ2F0ZURpc3BsYXlOYW1lIjogdHJ1ZQogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": + "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb24vdmVyc2lvbk1ldGFkYXRhLzEuMC4wL3NjaGVtYS5qc29uIiwKICAgICJ2ZXJzaW9uIjogIjIuMC4wIgp9", "payloadType": "InlineBase64"}, {"path": "definition/pages/pages.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb24vcGFnZXNNZXRhZGF0YS8xLjAuMC9zY2hlbWEuanNvbiIsCiAgICAicGFnZU9yZGVyIjogWwogICAgICAgICJiOGM1ZmI4ZDYzNWY4OTgzMjZjNiIKICAgIF0sCiAgICAiYWN0aXZlUGFnZU5hbWUiOiAiYjhjNWZiOGQ2MzVmODk4MzI2YzYiCn0=", "payloadType": "InlineBase64"}, {"path": "definition/pages/b8c5fb8d635f898326c6/page.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vcmVwb3J0L2RlZmluaXRpb24vcGFnZS8xLjMuMC9zY2hlbWEuanNvbiIsCiAgICAibmFtZSI6ICJiOGM1ZmI4ZDYzNWY4OTgzMjZjNiIsCiAgICAiZGlzcGxheU5hbWUiOiAiUGFnZSAxIiwKICAgICJkaXNwbGF5T3B0aW9uIjogIkZpdFRvUGFnZSIsCiAgICAiaGVpZ2h0IjogNzIwLAogICAgIndpZHRoIjogMTI4MAp9", - "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", - "payload": "ewogICAgIm5hbWUiOiAiQ1kyNFNVMTAiLAogICAgImRhdGFDb2xvcnMiOiBbCiAgICAgICAgIiMxMThERkYiLAogICAgICAgICIjMTIyMzlFIiwKICAgICAgICAiI0U2NkMzNyIsCiAgICAgICAgIiM2QjAwN0IiLAogICAgICAgICIjRTA0NEE3IiwKICAgICAgICAiIzc0NEVDMiIsCiAgICAgICAgIiNEOUIzMDAiLAogICAgICAgICIjRDY0NTUwIiwKICAgICAgICAiIzE5NzI3OCIsCiAgICAgICAgIiMxQUFCNDAiLAogICAgICAgICIjMTVDNkY0IiwKICAgICAgICAiIzQwOTJGRiIsCiAgICAgICAgIiNGRkEwNTgiLAogICAgICAgICIjQkU1REM5IiwKICAgICAgICAiI0Y0NzJEMCIsCiAgICAgICAgIiNCNUExRkYiLAogICAgICAgICIjQzRBMjAwIiwKICAgICAgICAiI0ZGODA4MCIsCiAgICAgICAgIiMwMERCQkMiLAogICAgICAgICIjNUJENjY3IiwKICAgICAgICAiIzAwOTFENSIsCiAgICAgICAgIiM0NjY4QzUiLAogICAgICAgICIjRkY2MzAwIiwKICAgICAgICAiIzk5MDA4QSIsCiAgICAgICAgIiNFQzAwOEMiLAogICAgICAgICIjNTMzMjg1IiwKICAgICAgICAiIzk5NzAwQSIsCiAgICAgICAgIiNGRjQxNDEiLAogICAgICAgICIjMUY5QTg1IiwKICAgICAgICAiIzI1ODkxQyIsCiAgICAgICAgIiMwMDU3QTIiLAogICAgICAgICIjMDAyMDUwIiwKICAgICAgICAiI0M5NEYwRiIsCiAgICAgICAgIiM0NTBGNTQiLAogICAgICAgICIjQjYwMDY0IiwKICAgICAgICAiIzM0MTI0RiIsCiAgICAgICAgIiM2QTVBMjkiLAogICAgICAgICIjMUFBQjQwIiwKICAgICAgICAiI0JBMTQxQSIsCiAgICAgICAgIiMwQzNEMzciLAogICAgICAgICIjMEI1MTFGIgogICAgXSwKICAgICJmb3JlZ3JvdW5kIjogIiMyNTI0MjMiLAogICAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICAgImZvcmVncm91bmROZXV0cmFsVGVydGlhcnkiOiAiI0IzQjBBRCIsCiAgICAiYmFja2dyb3VuZCI6ICIjRkZGRkZGIiwKICAgICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgICAiYmFja2dyb3VuZE5ldXRyYWwiOiAiI0M4QzZDNCIsCiAgICAidGFibGVBY2NlbnQiOiAiIzExOERGRiIsCiAgICAiZ29vZCI6ICIjMUFBQjQwIiwKICAgICJuZXV0cmFsIjogIiNEOUIzMDAiLAogICAgImJhZCI6ICIjRDY0NTU0IiwKICAgICJtYXhpbXVtIjogIiMxMThERkYiLAogICAgImNlbnRlciI6ICIjRDlCMzAwIiwKICAgICJtaW5pbXVtIjogIiNERUVGRkYiLAogICAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgICAiaHlwZXJsaW5rIjogIiMwMDc4ZDQiLAogICAgInZpc2l0ZWRIeXBlcmxpbmsiOiAiIzAwNzhkNCIsCiAgICAidGV4dENsYXNzZXMiOiB7CiAgICAgICAgImNhbGxvdXQiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDQ1LAogICAgICAgICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAidGl0bGUiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAgICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAiaGVhZGVyIjogewogICAgICAgICAgICAiZm9udFNpemUiOiAxMiwKICAgICAgICAgICAgImZvbnRGYWNlIjogIlNlZ29lIFVJIFNlbWlib2xkIiwKICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgfSwKICAgICAgICAibGFiZWwiOiB7CiAgICAgICAgICAgICJmb250U2l6ZSI6IDEwLAogICAgICAgICAgICAiZm9udEZhY2UiOiAiU2Vnb2UgVUkiLAogICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICB9CiAgICB9LAogICAgInZpc3VhbFN0eWxlcyI6IHsKICAgICAgICAiKiI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiKiI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ3b3JkV3JhcCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0F4aXNUaXRsZSI6IHRydWUsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkbGluZVN0eWxlIjogImRvdHRlZCIsCiAgICAgICAgICAgICAgICAgICAgICAgICJjb25jYXRlbmF0ZUxhYmVscyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0F4aXNUaXRsZSI6IHRydWUsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkbGluZVN0eWxlIjogImRvdHRlZCIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAidGl0bGVXcmFwIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzdHJva2VXaWR0aCI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgIndpZHRoIjogMQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiI2ZmZmZmZiIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImZpbHRlckNhcmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiJGlkIjogIkFwcGxpZWQiLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgImJvcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAgICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICAgICAgImJvcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzY2F0dGVyQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYnViYmxlU2l6ZSI6IC0xMCwKICAgICAgICAgICAgICAgICAgICAgICAgIm1hcmtlclJhbmdlVHlwZSI6ICJhdXRvIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImxpbmVDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJmb3JlY2FzdCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAibWFwIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJidWJibGVzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJ1YmJsZVNpemUiOiAtMTAsCiAgICAgICAgICAgICAgICAgICAgICAgICJtYXJrZXJSYW5nZVR5cGUiOiAiYXV0byIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJhenVyZU1hcCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgICAgICAgICAgICAgIm1pbkJ1YmJsZVJhZGl1cyI6IDgsCiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhSYWRpdXMiOiA0MAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFySGVpZ2h0IjogMywKICAgICAgICAgICAgICAgICAgICAgICAgInRoaWNrbmVzcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwaWVDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImRvbnV0Q2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogdHJ1ZSwKICAgICAgICAgICAgICAgICAgICAgICAgInBvc2l0aW9uIjogIlJpZ2h0Q2VudGVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImxhYmVsU3R5bGUiOiAiRGF0YSB2YWx1ZSwgcGVyY2VudCBvZiB0b3RhbCIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwaXZvdFRhYmxlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dFeHBhbmRDb2xsYXBzZUJ1dHRvbnMiOiB0cnVlLAogICAgICAgICAgICAgICAgICAgICAgICAibGVnYWN5U3R5bGVEaXNhYmxlZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImNhcmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJrcGkiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgInRyZW5kbGluZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAyMAogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImNhcmRWaXN1YWwiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhUaWxlcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiOiAwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJmaXhlZFNpemUiOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYWR2YW5jZWRTbGljZXJWaXN1YWwiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJtYXhUaWxlcyI6IDMKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzbGljZXIiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiaGlkZURhdGVQaWNrZXJCdXR0b24iOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicGFkZGluZyI6IDQsCiAgICAgICAgICAgICAgICAgICAgICAgICJhY2Nlc3NpYmlsaXR5Q29udHJhc3RQcm9wZXJ0aWVzIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiY29sdW1uQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJjbHVzdGVyZWRDb2x1bW5DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dHcmFkaWVudExlZ2VuZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYmFyQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJjbHVzdGVyZWRCYXJDaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3dHcmFkaWVudExlZ2VuZCI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYXJlYUNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJzdGFja2VkQXJlYUNoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAibGluZVN0YWNrZWRDb2x1bW5Db21ib0NoYXJ0IjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJyaWJib25DaGFydCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAgICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImdyb3VwIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgImJhc2ljU2hhcGUiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgInNoYXBlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJpbWFnZSI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJsb2NrQXNwZWN0IjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYWN0aW9uQnV0dG9uIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0KICAgICAgICAgICAgfQogICAgICAgIH0sCiAgICAgICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAiYm9va21hcmtOYXZpZ2F0b3IiOiB7CiAgICAgICAgICAgICIqIjogewogICAgICAgICAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXSwKICAgICAgICAgICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgfSwKICAgICAgICAidGV4dGJveCI6IHsKICAgICAgICAgICAgIioiOiB7CiAgICAgICAgICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdLAogICAgICAgICAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9LAogICAgICAgICJwYWdlIjogewogICAgICAgICAgICAiKiI6IHsKICAgICAgICAgICAgICAgICJvdXRzcGFjZSI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgICAgICAgICAgfQogICAgICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgICAgIF0sCiAgICAgICAgICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAxMDAKICAgICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICBdCiAgICAgICAgICAgIH0KICAgICAgICB9CiAgICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -985,14 +1054,13 @@ interactions: Connection: - keep-alive Content-Length: - - '30559' - + - '30503' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -1008,13 +1076,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:28:45 GMT + - Tue, 02 Jun 2026 13:07:56 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbc9a309-e1c8-41d3-a4a0-4f7ab06ba224 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2cdaa818-cc52-4d22-98ad-b64c487d8f9a Pragma: - no-cache RequestId: - - 63f72987-fd25-4b1b-a1e0-cc65d265f0de + - a3a9d435-7d05-4f13-99ca-c555233b9714 Retry-After: - '20' Strict-Transport-Security: @@ -1028,7 +1096,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - bbc9a309-e1c8-41d3-a4a0-4f7ab06ba224 + - 2cdaa818-cc52-4d22-98ad-b64c487d8f9a status: code: 202 message: Accepted @@ -1044,13 +1112,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbc9a309-e1c8-41d3-a4a0-4f7ab06ba224 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2cdaa818-cc52-4d22-98ad-b64c487d8f9a response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:28:45.7593828", - "lastUpdatedTimeUtc": "2026-04-14T12:28:46.0621268", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:07:57.5271322", + "lastUpdatedTimeUtc": "2026-06-02T13:07:58.002864", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1060,17 +1128,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:06 GMT + - Tue, 02 Jun 2026 13:08:18 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbc9a309-e1c8-41d3-a4a0-4f7ab06ba224/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2cdaa818-cc52-4d22-98ad-b64c487d8f9a/result Pragma: - no-cache RequestId: - - 872216d4-1761-4069-8a0b-e28c93eda594 + - a572f7ea-ea31-475b-887b-315741cc0117 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1078,7 +1146,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - bbc9a309-e1c8-41d3-a4a0-4f7ab06ba224 + - 2cdaa818-cc52-4d22-98ad-b64c487d8f9a status: code: 200 message: OK @@ -1094,13 +1162,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bbc9a309-e1c8-41d3-a4a0-4f7ab06ba224/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2cdaa818-cc52-4d22-98ad-b64c487d8f9a/result response: body: - string: '{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", "displayName": - "fabcli000001_new_5", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", "displayName": + "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1111,11 +1179,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:29:07 GMT + - Tue, 02 Jun 2026 13:08:19 GMT Pragma: - no-cache RequestId: - - 927c60fe-b024-4e8b-9bd6-dbe87db5b56a + - c82c7ab9-8841-4cbe-a9f8-8ebe940496e5 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1139,14 +1207,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1155,15 +1224,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:08 GMT + - Tue, 02 Jun 2026 13:08:20 GMT Pragma: - no-cache RequestId: - - c5b62ace-a170-4fa7-9013-9eec4944173c + - 8d8a28a6-ef29-4914-b1c2-8e4bf4d8c66a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1189,24 +1258,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "58d1862e-e39d-4e35-8eff-f1f362e6bb17", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", - "type": "Report", "displayName": "fabcli000001_new_5", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "1b330f3e-8f48-4026-a21a-bc5817181881", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", "displayName": - "fabcli000001_new_2", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", - "displayName": "fabcli000001_new_3", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", - "type": "DataPipeline", "displayName": "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "3c7a142d-5f50-46d0-8e81-106112c42b01", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", "displayName": + "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1215,15 +1296,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '423' + - '629' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:09 GMT + - Tue, 02 Jun 2026 13:08:21 GMT Pragma: - no-cache RequestId: - - c5a6f6f4-0991-4de2-a25c-da266bb7a437 + - 2c95145e-fcee-4309-9c38-7f1ef8197a8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1251,9 +1332,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/58d1862e-e39d-4e35-8eff-f1f362e6bb17 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/3c7a142d-5f50-46d0-8e81-106112c42b01 response: body: string: '' @@ -1269,11 +1350,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:29:10 GMT + - Tue, 02 Jun 2026 13:08:22 GMT Pragma: - no-cache RequestId: - - 13452b0e-6c22-4ae8-b8a8-058d8be2a29a + - 965e756c-3bb8-4c25-9c61-834a5fe532e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SQLDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SQLDatabase].yaml index 0db64b88..66f5757b 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SQLDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SQLDatabase].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:28 GMT + - Tue, 02 Jun 2026 13:14:18 GMT Pragma: - no-cache RequestId: - - 74c270e6-b667-41e8-aef3-da6391c91dce + - 1709d3ea-e983-4019-820b-66d959f17a1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,44 +62,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -107,15 +118,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '809' + - '1003' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:29 GMT + - Tue, 02 Jun 2026 13:14:19 GMT Pragma: - no-cache RequestId: - - 7ea8364e-52cf-4976-921f-929cd2cd93dd + - 2aa42199-1400-4f76-a0db-2da176c1b882 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -141,44 +152,54 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -187,15 +208,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '809' + - '1003' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:30 GMT + - Tue, 02 Jun 2026 13:14:19 GMT Pragma: - no-cache RequestId: - - d8abbb78-1088-4b49-93e2-a0e5297ec6cc + - 3b0ab8bb-5d2b-473c-8945-7420661662d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -220,13 +241,12 @@ interactions: - keep-alive Content-Length: - '76' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/sqlDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/sqlDatabases response: body: string: 'null' @@ -242,15 +262,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:31 GMT + - Tue, 02 Jun 2026 13:14:23 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd6d3ccb-1795-483e-b5d8-302f77bc80ec + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f56026a9-956e-431c-aed5-217fa8b5f7a0 Pragma: - no-cache RequestId: - - 5b21590a-1106-40a5-a0aa-dc4e6d4ffded + - b84f52e9-89f0-46a5-a6e3-5de3daed178f Retry-After: - '20' Strict-Transport-Security: @@ -264,7 +284,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - dd6d3ccb-1795-483e-b5d8-302f77bc80ec + - f56026a9-956e-431c-aed5-217fa8b5f7a0 status: code: 202 message: Accepted @@ -280,13 +300,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd6d3ccb-1795-483e-b5d8-302f77bc80ec + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f56026a9-956e-431c-aed5-217fa8b5f7a0 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:38:31.5470289", - "lastUpdatedTimeUtc": "2026-04-14T12:38:49.6892735", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:14:21.5930511", + "lastUpdatedTimeUtc": "2026-06-02T13:14:40.485057", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -296,17 +316,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:52 GMT + - Tue, 02 Jun 2026 13:14:44 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd6d3ccb-1795-483e-b5d8-302f77bc80ec/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f56026a9-956e-431c-aed5-217fa8b5f7a0/result Pragma: - no-cache RequestId: - - 48a97d29-cc5f-4cc3-9c19-33be37280830 + - 64105356-0769-4463-b1e1-23ab9202facb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,7 +334,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - dd6d3ccb-1795-483e-b5d8-302f77bc80ec + - f56026a9-956e-431c-aed5-217fa8b5f7a0 status: code: 200 message: OK @@ -330,14 +350,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd6d3ccb-1795-483e-b5d8-302f77bc80ec/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f56026a9-956e-431c-aed5-217fa8b5f7a0/result response: body: - string: '{"id": "8c16a61d-7b4f-492c-b5cc-f91bca8e03e4", "type": "SQLDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "1e8ca155-12ce-444e-b9f1-76c07cdb4135", "type": "SQLDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -348,11 +367,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:38:53 GMT + - Tue, 02 Jun 2026 13:14:44 GMT Pragma: - no-cache RequestId: - - 3ec67164-e226-49ef-9278-cd04b473be86 + - cb91fe80-b64c-4500-8055-b206627d11e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -376,14 +395,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -392,15 +412,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:54 GMT + - Tue, 02 Jun 2026 13:14:45 GMT Pragma: - no-cache RequestId: - - b2214a2e-aaec-43f8-b320-d353cb13a12b + - dbddc52e-89bf-4f89-a6b1-1caafe4170b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -426,47 +446,56 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "36d88945-2493-46df-9822-548c136434a0", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8c16a61d-7b4f-492c-b5cc-f91bca8e03e4", - "type": "SQLDatabase", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1e8ca155-12ce-444e-b9f1-76c07cdb4135", "type": "SQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -475,15 +504,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '877' + - '1040' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:55 GMT + - Tue, 02 Jun 2026 13:14:46 GMT Pragma: - no-cache RequestId: - - f1c7a52c-74c1-47d2-92c9-994cb3cc24ce + - 85d7971b-8dee-431c-9dd3-6334577f17b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -509,14 +538,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8c16a61d-7b4f-492c-b5cc-f91bca8e03e4 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1e8ca155-12ce-444e-b9f1-76c07cdb4135 response: body: - string: '{"id": "8c16a61d-7b4f-492c-b5cc-f91bca8e03e4", "type": "SQLDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "1e8ca155-12ce-444e-b9f1-76c07cdb4135", "type": "SQLDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -525,17 +553,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:56 GMT + - Tue, 02 Jun 2026 13:14:46 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 439b82e0-948d-452f-b6e4-68df61f0e759 + - 1e47b84d-2a65-4ac3-a8b2-604a20f85b02 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -563,9 +591,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8c16a61d-7b4f-492c-b5cc-f91bca8e03e4/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1e8ca155-12ce-444e-b9f1-76c07cdb4135/getDefinition response: body: string: 'null' @@ -581,13 +609,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:38:57 GMT + - Tue, 02 Jun 2026 13:14:47 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce5c7f75-2a0b-4c24-91b9-248bf862c387 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ef24033e-6fcf-4e87-9957-7d71281cfd02 Pragma: - no-cache RequestId: - - af71cafd-3fd3-4b11-b354-5452bf7f1547 + - 01c6c083-e718-4437-853e-7b890837560b Retry-After: - '20' Strict-Transport-Security: @@ -601,7 +629,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - ce5c7f75-2a0b-4c24-91b9-248bf862c387 + - ef24033e-6fcf-4e87-9957-7d71281cfd02 status: code: 202 message: Accepted @@ -617,13 +645,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce5c7f75-2a0b-4c24-91b9-248bf862c387 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ef24033e-6fcf-4e87-9957-7d71281cfd02 response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-04-14T12:38:57.6722287", - "lastUpdatedTimeUtc": "2026-04-14T12:38:57.6722287", "percentComplete": null, + string: '{"status": "Running", "createdTimeUtc": "2026-06-02T13:14:48.5104837", + "lastUpdatedTimeUtc": "2026-06-02T13:14:48.5104837", "percentComplete": null, "error": null}' headers: Access-Control-Expose-Headers: @@ -633,17 +661,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '123' + - '124' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:39:18 GMT + - Tue, 02 Jun 2026 13:15:09 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce5c7f75-2a0b-4c24-91b9-248bf862c387 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ef24033e-6fcf-4e87-9957-7d71281cfd02 Pragma: - no-cache RequestId: - - ce4b9daa-afd0-4732-9d9d-38a4853b6bb3 + - b27f1fae-af17-4ff9-ac04-9b1c4ec3a4a7 Retry-After: - '20' Strict-Transport-Security: @@ -653,7 +681,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ce5c7f75-2a0b-4c24-91b9-248bf862c387 + - ef24033e-6fcf-4e87-9957-7d71281cfd02 status: code: 200 message: OK @@ -669,13 +697,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce5c7f75-2a0b-4c24-91b9-248bf862c387 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ef24033e-6fcf-4e87-9957-7d71281cfd02 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:38:57.6722287", - "lastUpdatedTimeUtc": "2026-04-14T12:39:26.6647292", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:14:48.5104837", + "lastUpdatedTimeUtc": "2026-06-02T13:15:27.56035", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -685,17 +713,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:39:39 GMT + - Tue, 02 Jun 2026 13:15:30 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce5c7f75-2a0b-4c24-91b9-248bf862c387/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ef24033e-6fcf-4e87-9957-7d71281cfd02/result Pragma: - no-cache RequestId: - - b2f51d18-6462-4560-92f7-d178e357f2ca + - af9ba2f0-25cf-496e-b565-ded2310b506b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -703,7 +731,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ce5c7f75-2a0b-4c24-91b9-248bf862c387 + - ef24033e-6fcf-4e87-9957-7d71281cfd02 status: code: 200 message: OK @@ -719,14 +747,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce5c7f75-2a0b-4c24-91b9-248bf862c387/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ef24033e-6fcf-4e87-9957-7d71281cfd02/result response: body: string: '{"definition": {"format": "dacpac", "parts": [{"path": "fabcli000001.dacpac", - "payload": "UEsDBBQAAAAIAOpkjlzG6qC/qQIAALwHAAAJAAAAbW9kZWwueG1spVVdb9pAEHxOpf4Hy++1+VCbqjKJIgNNJEhIbKWqqgot9gInne+cu3ME+fXdw2ATCCm0D0jmvDOz7M4cweUi484zKs2k6LhNr+E6KBKZMjHruIWZfvrqXl58/BB0wUCUzDGDoUyRO33GsS9VBuaxBrdcp6ypztreZ9fp6vwWMuy4Q5YoqeXUeJbOi6Xk2isRXvTE7ac76cNEscQWTEBj+Xak5DNLUblOKDkHQ9yDhKWk2Wi3tw5Di0ChmWHPpNcHrtF16CcK3XHnxuTffF+vGLWXVc0kMvP1E5UqGoSfQuJHqBhw9rIi9VuNZstvtFyaw1lwjUCN2MezICy0kZlt1QnB4EyqZce9IvnbgnO9qqeqIRpIbU05hPq98wi8oJNYFdSlX3L6Nek7IveFNJjepCgMmzIazNtae2X/IRnKLKd5TBhnZmlNcEBzv24j2jxvnKj5gFNU5EfiiJc5UZBDSkccELe2tE+VJm3aoPJoqTkkG/U92EDOWAL8H5C9BRUJ4CNQpt7orxL8+yAsKvJcodZDpjVFrYs5CtpSwlD3lJKqplp7+KSx0ZTCLH0EMvGEo94a3tbxmjPwa0cHq2yXxD2OGdmmhm4SeZfbUFTupmjmqMyy2v46itUPiO4H4wEdieb4OwpUwMfhqDkOb8ZXUT2fHZobvYlJF6dQcHMn3vTuO0B9GuQHKEGbOAWlmJlfTaQ6oblQigSMbe8nQ55q+3Q8OpZKjGCG9MJgYqe8hX1llDfAfZKKcWF6wm4/PU7TqtFlzqavk9w+CFivawBiVhC2QvwNsOnueOB9gWoZGakwhNwUCl/fNUfgIgMcV1/jOYVxLnk9lfaX84MMQ1h0ZV6VVpfaXmGMWS7J8NeMQqqWD2jsRSzF7gp2Mr6OXpnOTSQDf+cv+OIPUEsDBBQAAAAIAOpkjlwfxKyNpQAAAMgAAAAPAAAARGFjTWV0YWRhdGEueG1sNY67DsIgGIV3E9+BsNu/MKgxlC7OLhp3pNRiuFTAS301Bx/JVxBvOdvJyXe+5/3B6qs16KxC1N5VmBQlRspJ32i3r/AptZM5rvl4xJZCboZeoTx3scJdSv0CIMpOWRELq2Xw0bepkN5CPJqoQoZCIySsVdDC6JtI+QJoSSiUFGcmQmwlrOKt2EmjL6Q/0Nm0IwODT/0ZbL9mPIu9w+BfZCX4OfEXUEsDBBQAAAAIAOpkjlxGYqp2LgIAAF0EAAAKAAAAT3JpZ2luLnhtbKVUy27bMBC8F+g/CLo24kuSJRqSAseygaJIY8Bu7zTFJIQl0SGpIu6v9dBP6i+UsmWladxTj9zd2RnOcvnrx8/s+rmpvW9CG6na3McA+Z5ouapk+5D7nb0PUv+6eP8uKxm/0/JBtp4DtCb3H63dTyE0/FE0zIBGcq2MureAqwaap9oI7drCinG4FlqyWn5n1pFAgjCBiPiuq+dlK8Z37EGstNoLbaUwx7BLfD1pKkLgRAGUwXNgyM9Va5lszeJ5r7QVVcksK+6Z483gxdyAW1stWDM0O7O98Hmn/GfWiNzvcX5Bev63Cv6FEftaHRrR2l6FltvOKm384niLC/eAFwRl8LIt2Z07HV08oz9WjkjaQ1HFiCYixEFCGQuiFLOAcRoGSRJtabqlCFfOmLF8NINpWxBEJgGKAhxtMJmGdIonwMVCFCYfEJoiJ/pUOKAWbfUWQxCII4wQxWdMXzYg3D2qjtveoeJ2fCm9vWCjVG3A+viMwIaZnTs81VfeYEiOk6NvAF158662nRZ5KzqrmatZddta8k/isFE70eYpTaO44lWKUsQ5xc7GP3hfSzlPoW8fAhqCyVj914CG6Elh8b/PfmQZ+p3G/Xqu2fxR8J3pmnEZzgHvi5a5DxtViRq4RfSL8obOFrObaB7N0gSnSYgm6ZKWaE7jCOEFCWNKk3JOJ7TE4WxJ0CJdkCWJU5LQeDYr3bIMvQcpr7mz257qpPVlI+MMXoi7XwKO30TxG1BLAwQUAAAACADqZI5c7aHT4I8AAACvAAAAEwAAAFtDb250ZW50X1R5cGVzXS54bWwljUsOgjAQhq/SzB4GXRhj2rpQb+AFmjo8IkwbOhg8mwuP5BUssPyf3+/z1ed56NWLxtQFNrArK1DEPjw6bgxMUhdHOFt9f0dKKlc5GWhF4gkx+ZYGl8oQiXNSh3FwkuXYYHT+6RrCfVUd0AcWYilk+QCrr1S7qRd1m7O9YfMc1GXrLSgDQrPgaqPVuOLtH1BLAQIUABQAAAAIAOpkjlzG6qC/qQIAALwHAAAJAAAAAAAAAAAAAAAAAAAAAABtb2RlbC54bWxQSwECFAAUAAAACADqZI5cH8SsjaUAAADIAAAADwAAAAAAAAAAAAAAAADQAgAARGFjTWV0YWRhdGEueG1sUEsBAhQAFAAAAAgA6mSOXEZiqnYuAgAAXQQAAAoAAAAAAAAAAAAAAAAAogMAAE9yaWdpbi54bWxQSwECFAAUAAAACADqZI5c7aHT4I8AAACvAAAAEwAAAAAAAAAAAAAAAAD4BQAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLBQYAAAAABAAEAO0AAAC4BgAAAAA=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNRTERhdGFiYXNlIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payload": "UEsDBBQAAAAIAOZpwlzG6qC/qQIAALwHAAAJAAAAbW9kZWwueG1spVVdb9pAEHxOpf4Hy++1+VCbqjKJIgNNJEhIbKWqqgot9gInne+cu3ME+fXdw2ATCCm0D0jmvDOz7M4cweUi484zKs2k6LhNr+E6KBKZMjHruIWZfvrqXl58/BB0wUCUzDGDoUyRO33GsS9VBuaxBrdcp6ypztreZ9fp6vwWMuy4Q5YoqeXUeJbOi6Xk2isRXvTE7ac76cNEscQWTEBj+Xak5DNLUblOKDkHQ9yDhKWk2Wi3tw5Di0ChmWHPpNcHrtF16CcK3XHnxuTffF+vGLWXVc0kMvP1E5UqGoSfQuJHqBhw9rIi9VuNZstvtFyaw1lwjUCN2MezICy0kZlt1QnB4EyqZce9IvnbgnO9qqeqIRpIbU05hPq98wi8oJNYFdSlX3L6Nek7IveFNJjepCgMmzIazNtae2X/IRnKLKd5TBhnZmlNcEBzv24j2jxvnKj5gFNU5EfiiJc5UZBDSkccELe2tE+VJm3aoPJoqTkkG/U92EDOWAL8H5C9BRUJ4CNQpt7orxL8+yAsKvJcodZDpjVFrYs5CtpSwlD3lJKqplp7+KSx0ZTCLH0EMvGEo94a3tbxmjPwa0cHq2yXxD2OGdmmhm4SeZfbUFTupmjmqMyy2v46itUPiO4H4wEdieb4OwpUwMfhqDkOb8ZXUT2fHZobvYlJF6dQcHMn3vTuO0B9GuQHKEGbOAWlmJlfTaQ6oblQigSMbe8nQ55q+3Q8OpZKjGCG9MJgYqe8hX1llDfAfZKKcWF6wm4/PU7TqtFlzqavk9w+CFivawBiVhC2QvwNsOnueOB9gWoZGakwhNwUCl/fNUfgIgMcV1/jOYVxLnk9lfaX84MMQ1h0ZV6VVpfaXmGMWS7J8NeMQqqWD2jsRSzF7gp2Mr6OXpnOTSQDf+cv+OIPUEsDBBQAAAAIAOZpwlzXD2I4pQAAAMgAAAAPAAAARGFjTWV0YWRhdGEueG1sNY45DsIwFER7JO5guSc/sYRY5DgNNQ2I/mMcYslLsA0CrkbBkbgCJoCmG43evNfjyZurNeSiQtTe1bQqSkqUk/6g3bGm59RO5rQR4xFfodzeekXy3MWadin1S4AoO2UxFlbL4KNvUyG9hXgyUYUMhQNK2Kig0eg7pnwBrKwYlIxmJiF8jVaJFvfSaJYSW8ymGHoOQz0Mdl8zkcU+4fAvshL8nMQbUEsDBBQAAAAIAOZpwlzUXg8ALgIAAF0EAAAKAAAAT3JpZ2luLnhtbKVUy27bMBC8F+g/CLo25ksv0pAUOJYDFEWaAHF7pykmISyJDkkVSX+th35Sf6GULStN454K6MLdnZ3hLFe/fvzMz5/aJvgmjVW6K0IMUBjITuhadfdF2Lu7GQ3Py/fv8oqLa6PuVRd4QGeL8MG53RxCKx5kyy1olTDa6jsHhG6hfWysNL4trLmAt9Io3qjv3HkSSBAmEJHQdw2C/IaLLb+XN0bvpHFK2n3YJ74eNJUR8KIAyuExMOaXunNcdXb1tNPGybrijpd33PPm8GRuxN06I3k7NjuyvfAFh/xn3soiHHBhSQb+twr+hZG7Rj+3snODCqM2vdPGhuX+FifuAU8IyuFpW/Jrf9q7eER/rD2Rcs/lZsMoSXg6IzHNZjGTcsYzGc0w5hmTnEqMeA6n8skMblxJEElnyH9kjaM5TuaIARSRlJD0A0Jz5EUfCkfUqqvfYnAEsiwjaTxhhrIR4e9R98INDpVX00sZ7AVrrRsLbvfPCKy53frDY3MWjIYUONv7BtBZsOwb1xtZdLJ3hvuam37TKPFJPq/1VnYFZTROalFTRJEQDHsb/+B9LeU4haF9BFgE0qn6rwGN0YPC8n+f/cQy9juM+/Vc8+WDFFvbt9MyHAPBF6OKELa6lg3wixiW1QVbrBYX8TJe0AzTLEIpvWQVWrIkRnhFooSxrFqylFU4WlwStKIrckkSSjKWLBaVX5ax9yjlNXd+NVAdtL5sZJLDE3H/l4DTb6L8DVBLAwQUAAAACADmacJc7aHT4I8AAACvAAAAEwAAAFtDb250ZW50X1R5cGVzXS54bWwljUsOgjAQhq/SzB4GXRhj2rpQb+AFmjo8IkwbOhg8mwuP5BUssPyf3+/z1ed56NWLxtQFNrArK1DEPjw6bgxMUhdHOFt9f0dKKlc5GWhF4gkx+ZYGl8oQiXNSh3FwkuXYYHT+6RrCfVUd0AcWYilk+QCrr1S7qRd1m7O9YfMc1GXrLSgDQrPgaqPVuOLtH1BLAQIUABQAAAAIAOZpwlzG6qC/qQIAALwHAAAJAAAAAAAAAAAAAAAAAAAAAABtb2RlbC54bWxQSwECFAAUAAAACADmacJc1w9iOKUAAADIAAAADwAAAAAAAAAAAAAAAADQAgAARGFjTWV0YWRhdGEueG1sUEsBAhQAFAAAAAgA5mnCXNReDwAuAgAAXQQAAAoAAAAAAAAAAAAAAAAAogMAAE9yaWdpbi54bWxQSwECFAAUAAAACADmacJc7aHT4I8AAACvAAAAEwAAAAAAAAAAAAAAAAD4BQAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLBQYAAAAABAAEAO0AAAC4BgAAAAA=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNRTERhdGFiYXNlIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -738,11 +766,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:39:39 GMT + - Tue, 02 Jun 2026 13:15:31 GMT Pragma: - no-cache RequestId: - - 73d39d86-d745-4d79-9dbe-88cc55dac820 + - d4591a0f-2f51-4955-be0d-b292bbbdac00 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -766,14 +794,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -782,15 +811,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:39:41 GMT + - Tue, 02 Jun 2026 13:15:31 GMT Pragma: - no-cache RequestId: - - 501df968-e67b-4b73-a227-7d9dd4c27574 + - 2aa85bb1-2bcd-4460-9af9-cfd9d0337322 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -816,47 +845,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "36d88945-2493-46df-9822-548c136434a0", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8c16a61d-7b4f-492c-b5cc-f91bca8e03e4", - "type": "SQLDatabase", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "afb3d7fe-1b89-4b01-8b6d-fcd07952738a", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1e8ca155-12ce-444e-b9f1-76c07cdb4135", "type": "SQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -865,15 +905,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '877' + - '1068' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:39:41 GMT + - Tue, 02 Jun 2026 13:15:33 GMT Pragma: - no-cache RequestId: - - a7389248-c226-4f0b-82db-853c7ed518a8 + - 59e8a96d-ebdf-4737-8f50-26d5d9336f4e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -899,47 +939,58 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "36d88945-2493-46df-9822-548c136434a0", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8c16a61d-7b4f-492c-b5cc-f91bca8e03e4", - "type": "SQLDatabase", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "afb3d7fe-1b89-4b01-8b6d-fcd07952738a", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1e8ca155-12ce-444e-b9f1-76c07cdb4135", "type": "SQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -948,15 +999,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '877' + - '1068' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:39:42 GMT + - Tue, 02 Jun 2026 13:15:33 GMT Pragma: - no-cache RequestId: - - 9f1139f1-ee92-4843-b0c2-a9ec41599983 + - e43f5098-eef3-412c-8af9-1b21215483d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -971,10 +1022,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "SQLDatabase", "folderId": - null, "displayName": "fabcli000001_new_13", "definition": {"parts": [{"path": - "fabcli000001.dacpac", "payload": "UEsDBBQAAAAIAOpkjlzG6qC/qQIAALwHAAAJAAAAbW9kZWwueG1spVVdb9pAEHxOpf4Hy++1+VCbqjKJIgNNJEhIbKWqqgot9gInne+cu3ME+fXdw2ATCCm0D0jmvDOz7M4cweUi484zKs2k6LhNr+E6KBKZMjHruIWZfvrqXl58/BB0wUCUzDGDoUyRO33GsS9VBuaxBrdcp6ypztreZ9fp6vwWMuy4Q5YoqeXUeJbOi6Xk2isRXvTE7ac76cNEscQWTEBj+Xak5DNLUblOKDkHQ9yDhKWk2Wi3tw5Di0ChmWHPpNcHrtF16CcK3XHnxuTffF+vGLWXVc0kMvP1E5UqGoSfQuJHqBhw9rIi9VuNZstvtFyaw1lwjUCN2MezICy0kZlt1QnB4EyqZce9IvnbgnO9qqeqIRpIbU05hPq98wi8oJNYFdSlX3L6Nek7IveFNJjepCgMmzIazNtae2X/IRnKLKd5TBhnZmlNcEBzv24j2jxvnKj5gFNU5EfiiJc5UZBDSkccELe2tE+VJm3aoPJoqTkkG/U92EDOWAL8H5C9BRUJ4CNQpt7orxL8+yAsKvJcodZDpjVFrYs5CtpSwlD3lJKqplp7+KSx0ZTCLH0EMvGEo94a3tbxmjPwa0cHq2yXxD2OGdmmhm4SeZfbUFTupmjmqMyy2v46itUPiO4H4wEdieb4OwpUwMfhqDkOb8ZXUT2fHZobvYlJF6dQcHMn3vTuO0B9GuQHKEGbOAWlmJlfTaQ6oblQigSMbe8nQ55q+3Q8OpZKjGCG9MJgYqe8hX1llDfAfZKKcWF6wm4/PU7TqtFlzqavk9w+CFivawBiVhC2QvwNsOnueOB9gWoZGakwhNwUCl/fNUfgIgMcV1/jOYVxLnk9lfaX84MMQ1h0ZV6VVpfaXmGMWS7J8NeMQqqWD2jsRSzF7gp2Mr6OXpnOTSQDf+cv+OIPUEsDBBQAAAAIAOpkjlwfxKyNpQAAAMgAAAAPAAAARGFjTWV0YWRhdGEueG1sNY67DsIgGIV3E9+BsNu/MKgxlC7OLhp3pNRiuFTAS301Bx/JVxBvOdvJyXe+5/3B6qs16KxC1N5VmBQlRspJ32i3r/AptZM5rvl4xJZCboZeoTx3scJdSv0CIMpOWRELq2Xw0bepkN5CPJqoQoZCIySsVdDC6JtI+QJoSSiUFGcmQmwlrOKt2EmjL6Q/0Nm0IwODT/0ZbL9mPIu9w+BfZCX4OfEXUEsDBBQAAAAIAOpkjlxGYqp2LgIAAF0EAAAKAAAAT3JpZ2luLnhtbKVUy27bMBC8F+g/CLo24kuSJRqSAseygaJIY8Bu7zTFJIQl0SGpIu6v9dBP6i+UsmWladxTj9zd2RnOcvnrx8/s+rmpvW9CG6na3McA+Z5ouapk+5D7nb0PUv+6eP8uKxm/0/JBtp4DtCb3H63dTyE0/FE0zIBGcq2MureAqwaap9oI7drCinG4FlqyWn5n1pFAgjCBiPiuq+dlK8Z37EGstNoLbaUwx7BLfD1pKkLgRAGUwXNgyM9Va5lszeJ5r7QVVcksK+6Z483gxdyAW1stWDM0O7O98Hmn/GfWiNzvcX5Bev63Cv6FEftaHRrR2l6FltvOKm384niLC/eAFwRl8LIt2Z07HV08oz9WjkjaQ1HFiCYixEFCGQuiFLOAcRoGSRJtabqlCFfOmLF8NINpWxBEJgGKAhxtMJmGdIonwMVCFCYfEJoiJ/pUOKAWbfUWQxCII4wQxWdMXzYg3D2qjtveoeJ2fCm9vWCjVG3A+viMwIaZnTs81VfeYEiOk6NvAF158662nRZ5KzqrmatZddta8k/isFE70eYpTaO44lWKUsQ5xc7GP3hfSzlPoW8fAhqCyVj914CG6Elh8b/PfmQZ+p3G/Xqu2fxR8J3pmnEZzgHvi5a5DxtViRq4RfSL8obOFrObaB7N0gSnSYgm6ZKWaE7jCOEFCWNKk3JOJ7TE4WxJ0CJdkCWJU5LQeDYr3bIMvQcpr7mz257qpPVlI+MMXoi7XwKO30TxG1BLAwQUAAAACADqZI5c7aHT4I8AAACvAAAAEwAAAFtDb250ZW50X1R5cGVzXS54bWwljUsOgjAQhq/SzB4GXRhj2rpQb+AFmjo8IkwbOhg8mwuP5BUssPyf3+/z1ed56NWLxtQFNrArK1DEPjw6bgxMUhdHOFt9f0dKKlc5GWhF4gkx+ZYGl8oQiXNSh3FwkuXYYHT+6RrCfVUd0AcWYilk+QCrr1S7qRd1m7O9YfMc1GXrLSgDQrPgaqPVuOLtH1BLAQIUABQAAAAIAOpkjlzG6qC/qQIAALwHAAAJAAAAAAAAAAAAAAAAAAAAAABtb2RlbC54bWxQSwECFAAUAAAACADqZI5cH8SsjaUAAADIAAAADwAAAAAAAAAAAAAAAADQAgAARGFjTWV0YWRhdGEueG1sUEsBAhQAFAAAAAgA6mSOXEZiqnYuAgAAXQQAAAoAAAAAAAAAAAAAAAAAogMAAE9yaWdpbi54bWxQSwECFAAUAAAACADqZI5c7aHT4I8AAACvAAAAEwAAAAAAAAAAAAAAAAD4BQAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLBQYAAAAABAAEAO0AAAC4BgAAAAA=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU1FMRGF0YWJhc2UiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + body: '{"type": "SQLDatabase", "folderId": null, "displayName": "fabcli000001_new_13", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU1FMRGF0YWJhc2UiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": "fabcli000001.dacpac", "payload": "UEsDBBQAAAAIAOZpwlzG6qC/qQIAALwHAAAJAAAAbW9kZWwueG1spVVdb9pAEHxOpf4Hy++1+VCbqjKJIgNNJEhIbKWqqgot9gInne+cu3ME+fXdw2ATCCm0D0jmvDOz7M4cweUi484zKs2k6LhNr+E6KBKZMjHruIWZfvrqXl58/BB0wUCUzDGDoUyRO33GsS9VBuaxBrdcp6ypztreZ9fp6vwWMuy4Q5YoqeXUeJbOi6Xk2isRXvTE7ac76cNEscQWTEBj+Xak5DNLUblOKDkHQ9yDhKWk2Wi3tw5Di0ChmWHPpNcHrtF16CcK3XHnxuTffF+vGLWXVc0kMvP1E5UqGoSfQuJHqBhw9rIi9VuNZstvtFyaw1lwjUCN2MezICy0kZlt1QnB4EyqZce9IvnbgnO9qqeqIRpIbU05hPq98wi8oJNYFdSlX3L6Nek7IveFNJjepCgMmzIazNtae2X/IRnKLKd5TBhnZmlNcEBzv24j2jxvnKj5gFNU5EfiiJc5UZBDSkccELe2tE+VJm3aoPJoqTkkG/U92EDOWAL8H5C9BRUJ4CNQpt7orxL8+yAsKvJcodZDpjVFrYs5CtpSwlD3lJKqplp7+KSx0ZTCLH0EMvGEo94a3tbxmjPwa0cHq2yXxD2OGdmmhm4SeZfbUFTupmjmqMyy2v46itUPiO4H4wEdieb4OwpUwMfhqDkOb8ZXUT2fHZobvYlJF6dQcHMn3vTuO0B9GuQHKEGbOAWlmJlfTaQ6oblQigSMbe8nQ55q+3Q8OpZKjGCG9MJgYqe8hX1llDfAfZKKcWF6wm4/PU7TqtFlzqavk9w+CFivawBiVhC2QvwNsOnueOB9gWoZGakwhNwUCl/fNUfgIgMcV1/jOYVxLnk9lfaX84MMQ1h0ZV6VVpfaXmGMWS7J8NeMQqqWD2jsRSzF7gp2Mr6OXpnOTSQDf+cv+OIPUEsDBBQAAAAIAOZpwlzXD2I4pQAAAMgAAAAPAAAARGFjTWV0YWRhdGEueG1sNY45DsIwFER7JO5guSc/sYRY5DgNNQ2I/mMcYslLsA0CrkbBkbgCJoCmG43evNfjyZurNeSiQtTe1bQqSkqUk/6g3bGm59RO5rQR4xFfodzeekXy3MWadin1S4AoO2UxFlbL4KNvUyG9hXgyUYUMhQNK2Kig0eg7pnwBrKwYlIxmJiF8jVaJFvfSaJYSW8ymGHoOQz0Mdl8zkcU+4fAvshL8nMQbUEsDBBQAAAAIAOZpwlzUXg8ALgIAAF0EAAAKAAAAT3JpZ2luLnhtbKVUy27bMBC8F+g/CLo25ksv0pAUOJYDFEWaAHF7pykmISyJDkkVSX+th35Sf6GULStN454K6MLdnZ3hLFe/fvzMz5/aJvgmjVW6K0IMUBjITuhadfdF2Lu7GQ3Py/fv8oqLa6PuVRd4QGeL8MG53RxCKx5kyy1olTDa6jsHhG6hfWysNL4trLmAt9Io3qjv3HkSSBAmEJHQdw2C/IaLLb+XN0bvpHFK2n3YJ74eNJUR8KIAyuExMOaXunNcdXb1tNPGybrijpd33PPm8GRuxN06I3k7NjuyvfAFh/xn3soiHHBhSQb+twr+hZG7Rj+3snODCqM2vdPGhuX+FifuAU8IyuFpW/Jrf9q7eER/rD2Rcs/lZsMoSXg6IzHNZjGTcsYzGc0w5hmTnEqMeA6n8skMblxJEElnyH9kjaM5TuaIARSRlJD0A0Jz5EUfCkfUqqvfYnAEsiwjaTxhhrIR4e9R98INDpVX00sZ7AVrrRsLbvfPCKy53frDY3MWjIYUONv7BtBZsOwb1xtZdLJ3hvuam37TKPFJPq/1VnYFZTROalFTRJEQDHsb/+B9LeU4haF9BFgE0qn6rwGN0YPC8n+f/cQy9juM+/Vc8+WDFFvbt9MyHAPBF6OKELa6lg3wixiW1QVbrBYX8TJe0AzTLEIpvWQVWrIkRnhFooSxrFqylFU4WlwStKIrckkSSjKWLBaVX5ax9yjlNXd+NVAdtL5sZJLDE3H/l4DTb6L8DVBLAwQUAAAACADmacJc7aHT4I8AAACvAAAAEwAAAFtDb250ZW50X1R5cGVzXS54bWwljUsOgjAQhq/SzB4GXRhj2rpQb+AFmjo8IkwbOhg8mwuP5BUssPyf3+/z1ed56NWLxtQFNrArK1DEPjw6bgxMUhdHOFt9f0dKKlc5GWhF4gkx+ZYGl8oQiXNSh3FwkuXYYHT+6RrCfVUd0AcWYilk+QCrr1S7qRd1m7O9YfMc1GXrLSgDQrPgaqPVuOLtH1BLAQIUABQAAAAIAOZpwlzG6qC/qQIAALwHAAAJAAAAAAAAAAAAAAAAAAAAAABtb2RlbC54bWxQSwECFAAUAAAACADmacJc1w9iOKUAAADIAAAADwAAAAAAAAAAAAAAAADQAgAARGFjTWV0YWRhdGEueG1sUEsBAhQAFAAAAAgA5mnCXNReDwAuAgAAXQQAAAoAAAAAAAAAAAAAAAAAogMAAE9yaWdpbi54bWxQSwECFAAUAAAACADmacJc7aHT4I8AAACvAAAAEwAAAAAAAAAAAAAAAAD4BQAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLBQYAAAAABAAEAO0AAAC4BgAAAAA=", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -984,14 +1034,13 @@ interactions: Connection: - keep-alive Content-Length: - - '3398' - + - '3346' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -1007,15 +1056,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:39:43 GMT + - Tue, 02 Jun 2026 13:15:35 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfb1caed-f981-4ae7-81cb-0abaa7a580a1 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ede2c1f-284a-4df4-946f-9eb23dac4903 Pragma: - no-cache RequestId: - - 2fbb73a4-df7f-41e5-a0c0-8f349f1bfcaf + - a83648c2-5875-4f6e-b020-d585dd500bc3 Retry-After: - '20' Strict-Transport-Security: @@ -1029,7 +1078,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - cfb1caed-f981-4ae7-81cb-0abaa7a580a1 + - 4ede2c1f-284a-4df4-946f-9eb23dac4903 status: code: 202 message: Accepted @@ -1045,13 +1094,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfb1caed-f981-4ae7-81cb-0abaa7a580a1 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ede2c1f-284a-4df4-946f-9eb23dac4903 response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-04-14T12:39:43.8482527", - "lastUpdatedTimeUtc": "2026-04-14T12:39:43.8482527", "percentComplete": null, + string: '{"status": "Running", "createdTimeUtc": "2026-06-02T13:15:35.2308627", + "lastUpdatedTimeUtc": "2026-06-02T13:15:35.2308627", "percentComplete": null, "error": null}' headers: Access-Control-Expose-Headers: @@ -1061,17 +1110,69 @@ interactions: Content-Encoding: - gzip Content-Length: - - '124' + - '123' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 13:15:56 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ede2c1f-284a-4df4-946f-9eb23dac4903 + Pragma: + - no-cache + RequestId: + - abcc74ef-df9a-4411-bdf8-a2350bdb0a28 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 4ede2c1f-284a-4df4-946f-9eb23dac4903 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ede2c1f-284a-4df4-946f-9eb23dac4903 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-06-02T13:15:35.2308627", + "lastUpdatedTimeUtc": "2026-06-02T13:15:35.2308627", "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 12:40:04 GMT + - Tue, 02 Jun 2026 13:16:17 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfb1caed-f981-4ae7-81cb-0abaa7a580a1 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ede2c1f-284a-4df4-946f-9eb23dac4903 Pragma: - no-cache RequestId: - - c76ad966-74b0-4972-a3a2-0bb3f594d02c + - b93edc9b-6848-4bbd-953b-471a1c43a714 Retry-After: - '20' Strict-Transport-Security: @@ -1081,7 +1182,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - cfb1caed-f981-4ae7-81cb-0abaa7a580a1 + - 4ede2c1f-284a-4df4-946f-9eb23dac4903 status: code: 200 message: OK @@ -1097,13 +1198,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfb1caed-f981-4ae7-81cb-0abaa7a580a1 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ede2c1f-284a-4df4-946f-9eb23dac4903 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:39:43.8482527", - "lastUpdatedTimeUtc": "2026-04-14T12:40:23.4788063", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:15:35.2308627", + "lastUpdatedTimeUtc": "2026-06-02T13:16:25.0267515", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1113,17 +1214,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '134' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:25 GMT + - Tue, 02 Jun 2026 13:16:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfb1caed-f981-4ae7-81cb-0abaa7a580a1/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ede2c1f-284a-4df4-946f-9eb23dac4903/result Pragma: - no-cache RequestId: - - c31d7f19-1bfd-44ef-acf5-a43b48e79293 + - 08d684ef-6af4-4d9b-ab4e-cae99faf8444 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1131,7 +1232,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - cfb1caed-f981-4ae7-81cb-0abaa7a580a1 + - 4ede2c1f-284a-4df4-946f-9eb23dac4903 status: code: 200 message: OK @@ -1147,14 +1248,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cfb1caed-f981-4ae7-81cb-0abaa7a580a1/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ede2c1f-284a-4df4-946f-9eb23dac4903/result response: body: - string: '{"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", "type": "SQLDatabase", - "displayName": "fabcli000001_new_13", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", + "displayName": "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1165,11 +1265,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:40:27 GMT + - Tue, 02 Jun 2026 13:16:39 GMT Pragma: - no-cache RequestId: - - 0087aaf1-968e-4999-8cb0-1d8e5ac09b7f + - ae697095-9c21-49c9-9b10-dbf2f49d7416 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1193,14 +1293,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1209,15 +1310,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:27 GMT + - Tue, 02 Jun 2026 13:16:40 GMT Pragma: - no-cache RequestId: - - 77bd1a4e-d060-4a2e-ae4a-cf4c63b7dfb8 + - d63cd701-364e-4f79-9b30-aa87a17cc86b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1243,50 +1344,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "36d88945-2493-46df-9822-548c136434a0", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "8c16a61d-7b4f-492c-b5cc-f91bca8e03e4", - "type": "SQLDatabase", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "afb3d7fe-1b89-4b01-8b6d-fcd07952738a", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1e8ca155-12ce-444e-b9f1-76c07cdb4135", "type": "SQLDatabase", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1295,15 +1408,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '938' + - '1123' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:40:28 GMT + - Tue, 02 Jun 2026 13:16:41 GMT Pragma: - no-cache RequestId: - - c30bc7c9-c231-4a02-99f9-80a109a95969 + - c9ccf48a-2fe3-4a13-9e1d-a9a71c80f39c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1331,9 +1444,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8c16a61d-7b4f-492c-b5cc-f91bca8e03e4 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1e8ca155-12ce-444e-b9f1-76c07cdb4135 response: body: string: '' @@ -1349,11 +1462,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:40:28 GMT + - Tue, 02 Jun 2026 13:16:42 GMT Pragma: - no-cache RequestId: - - f15d044d-7be9-4977-8c7b-1ad2bff0c42b + - ab0d810b-f793-4fd1-a497-fca2f106f9d7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SemanticModel].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SemanticModel].yaml index e2e3c4c0..05ba3d6f 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SemanticModel].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SemanticModel].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:11 GMT + - Tue, 02 Jun 2026 13:08:23 GMT Pragma: - no-cache RequestId: - - e103c50a-d1be-4997-9df8-815b3bd868fc + - aba81d14-9e55-4115-b1e9-683258a21af5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,22 +62,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -85,15 +98,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '386' + - '604' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:12 GMT + - Tue, 02 Jun 2026 13:08:24 GMT Pragma: - no-cache RequestId: - - 8a4a2b29-7dbd-47d1-8450-7ed7dde7b3fb + - 111be3a9-a183-41d6-8eef-8d3552b73b5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -119,22 +132,34 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -143,15 +168,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '386' + - '604' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:13 GMT + - Tue, 02 Jun 2026 13:08:24 GMT Pragma: - no-cache RequestId: - - b6ca14ba-54ca-42fd-82e8-0a0b8391db80 + - ea9e1776-77ba-492b-aeca-9eace22f6837 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -166,7 +191,15 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "SemanticModel", "folderId": null, "definition": {"parts": [{"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNlbWFudGljTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogIkJsYW5rIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "definition.pbism", "payload": "ewogICJ2ZXJzaW9uIjogIjQuMCIsCiAgInNldHRpbmdzIjoge30KfQ==", "payloadType": "InlineBase64"}, {"path": "definition/database.tmdl", "payload": "ZGF0YWJhc2UKCWNvbXBhdGliaWxpdHlMZXZlbDogMTU2MQoK", "payloadType": "InlineBase64"}, {"path": "definition/model.tmdl", "payload": "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxl", "payloadType": "InlineBase64"}, {"path": "definition/tables/Table.tmdl", "payload": "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000001", "type": "SemanticModel", "folderId": null, + "definition": {"parts": [{"path": "definition.pbism", "payload": "ewogICJ2ZXJzaW9uIjogIjQuMCIsCiAgInNldHRpbmdzIjoge30KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNlbWFudGljTW9kZWwiLAogICAgImRpc3BsYXlOYW1lIjogIkJsYW5rIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "definition/model.tmdl", "payload": + "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxl", + "payloadType": "InlineBase64"}, {"path": "definition/database.tmdl", "payload": + "ZGF0YWJhc2UKCWNvbXBhdGliaWxpdHlMZXZlbDogMTU2MQoK", "payloadType": "InlineBase64"}, + {"path": "definition/tables/Table.tmdl", "payload": "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -176,13 +209,12 @@ interactions: - keep-alive Content-Length: - '2635' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/semanticModels + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/semanticModels response: body: string: 'null' @@ -198,13 +230,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:13 GMT + - Tue, 02 Jun 2026 13:08:25 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aaf0e72c-b69c-410c-b412-52306923122e + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a9f1a01b-9de1-4cc3-bcfb-696bec414bb4 Pragma: - no-cache RequestId: - - 1ab341b3-8378-4683-b11a-c5dd39ae59b7 + - fa2b79be-5a71-4ecb-9cae-391674c7b721 Retry-After: - '20' Strict-Transport-Security: @@ -218,7 +250,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - aaf0e72c-b69c-410c-b412-52306923122e + - a9f1a01b-9de1-4cc3-bcfb-696bec414bb4 status: code: 202 message: Accepted @@ -234,13 +266,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aaf0e72c-b69c-410c-b412-52306923122e + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a9f1a01b-9de1-4cc3-bcfb-696bec414bb4 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:29:14.2734614", - "lastUpdatedTimeUtc": "2026-04-14T12:29:24.9916212", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:08:26.2956726", + "lastUpdatedTimeUtc": "2026-06-02T13:08:45.2443247", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -250,17 +282,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:34 GMT + - Tue, 02 Jun 2026 13:08:46 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aaf0e72c-b69c-410c-b412-52306923122e/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a9f1a01b-9de1-4cc3-bcfb-696bec414bb4/result Pragma: - no-cache RequestId: - - e0184b0e-9029-41e9-ad40-b5704e38206f + - 9f840756-2ec6-4682-a6a9-b3a88873f730 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -268,7 +300,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - aaf0e72c-b69c-410c-b412-52306923122e + - a9f1a01b-9de1-4cc3-bcfb-696bec414bb4 status: code: 200 message: OK @@ -284,13 +316,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aaf0e72c-b69c-410c-b412-52306923122e/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a9f1a01b-9de1-4cc3-bcfb-696bec414bb4/result response: body: - string: '{"id": "515bc7bc-e86d-44b4-a66d-e04758c2f5bc", "type": "SemanticModel", - "displayName": "fabcli000001", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "b88f74d2-bafd-4cc7-ae13-7a091ce46999", "type": "SemanticModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -301,11 +333,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:29:35 GMT + - Tue, 02 Jun 2026 13:08:47 GMT Pragma: - no-cache RequestId: - - 090dea36-e9e5-4d69-a7b8-0650f7937dbc + - 6ec7e9fa-9ba9-4bbc-9b66-630d2c5fd3cd Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -329,14 +361,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -345,15 +378,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:36 GMT + - Tue, 02 Jun 2026 13:08:48 GMT Pragma: - no-cache RequestId: - - 95c3e155-867e-4afe-b54c-81825581f33a + - 0cb0569f-c690-4eed-8116-4fda624914d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -379,24 +412,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "515bc7bc-e86d-44b4-a66d-e04758c2f5bc", - "type": "SemanticModel", "displayName": "fabcli000001", "description": "", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b88f74d2-bafd-4cc7-ae13-7a091ce46999", "type": "SemanticModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -405,15 +450,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '423' + - '639' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:36 GMT + - Tue, 02 Jun 2026 13:08:50 GMT Pragma: - no-cache RequestId: - - 72907b5b-649e-4b02-bb31-f6b01e384784 + - d81e1274-b4a2-4e6e-bb88-93174e75885c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -439,13 +484,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/515bc7bc-e86d-44b4-a66d-e04758c2f5bc + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b88f74d2-bafd-4cc7-ae13-7a091ce46999 response: body: - string: '{"id": "515bc7bc-e86d-44b4-a66d-e04758c2f5bc", "type": "SemanticModel", - "displayName": "fabcli000001", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "b88f74d2-bafd-4cc7-ae13-7a091ce46999", "type": "SemanticModel", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -454,17 +499,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '159' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:37 GMT + - Tue, 02 Jun 2026 13:08:50 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f2b41c94-4c34-44ab-b6f4-982eea701d6a + - 20e43be0-036d-49f4-bbbb-406b338bf5f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -492,9 +537,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/515bc7bc-e86d-44b4-a66d-e04758c2f5bc/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b88f74d2-bafd-4cc7-ae13-7a091ce46999/getDefinition response: body: string: 'null' @@ -510,13 +555,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:29:38 GMT + - Tue, 02 Jun 2026 13:08:51 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c8351233-a8c1-4526-8e19-e97e4fcf5113 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/375dac27-2873-4e97-9385-6120e65dc9a5 Pragma: - no-cache RequestId: - - 0303e194-d80d-4adc-ba09-a2423fa68161 + - 49312a63-d3e1-48e7-99c5-e869fe13a6ac Retry-After: - '20' Strict-Transport-Security: @@ -530,7 +575,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c8351233-a8c1-4526-8e19-e97e4fcf5113 + - 375dac27-2873-4e97-9385-6120e65dc9a5 status: code: 202 message: Accepted @@ -546,13 +591,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c8351233-a8c1-4526-8e19-e97e4fcf5113 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/375dac27-2873-4e97-9385-6120e65dc9a5 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:29:39.4170275", - "lastUpdatedTimeUtc": "2026-04-14T12:29:39.911805", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:08:52.4551767", + "lastUpdatedTimeUtc": "2026-06-02T13:08:54.9746622", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -562,17 +607,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:00 GMT + - Tue, 02 Jun 2026 13:09:12 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c8351233-a8c1-4526-8e19-e97e4fcf5113/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/375dac27-2873-4e97-9385-6120e65dc9a5/result Pragma: - no-cache RequestId: - - 19e55f05-680c-4690-a91b-31e2c81c52e7 + - 23233b30-68bf-42ff-a345-22a15ebed631 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -580,7 +625,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c8351233-a8c1-4526-8e19-e97e4fcf5113 + - 375dac27-2873-4e97-9385-6120e65dc9a5 status: code: 200 message: OK @@ -596,9 +641,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c8351233-a8c1-4526-8e19-e97e4fcf5113/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/375dac27-2873-4e97-9385-6120e65dc9a5/result response: body: string: '{"definition": {"format": "TMDL", "parts": [{"path": "definition.pbism", @@ -621,11 +666,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:30:01 GMT + - Tue, 02 Jun 2026 13:09:13 GMT Pragma: - no-cache RequestId: - - 8435fb00-7d78-46ab-af4c-2efd2861ccf0 + - 79087821-dc7a-4ecf-ae89-5c1e43b24fbd Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -649,14 +694,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -665,15 +711,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:02 GMT + - Tue, 02 Jun 2026 13:09:14 GMT Pragma: - no-cache RequestId: - - 95b6666c-917b-4e9e-9b45-8e3dbd2a961d + - a5e6555d-c516-45c9-86ee-ee34b1379192 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -699,24 +745,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "515bc7bc-e86d-44b4-a66d-e04758c2f5bc", - "type": "SemanticModel", "displayName": "fabcli000001", "description": "", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b88f74d2-bafd-4cc7-ae13-7a091ce46999", "type": "SemanticModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -725,15 +783,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '423' + - '639' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:03 GMT + - Tue, 02 Jun 2026 13:09:15 GMT Pragma: - no-cache RequestId: - - 6091c750-7b9a-4a4f-a7d2-dda116612f78 + - 9325bccc-9b32-4872-a170-c1f0d42be949 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -759,24 +817,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "515bc7bc-e86d-44b4-a66d-e04758c2f5bc", - "type": "SemanticModel", "displayName": "fabcli000001", "description": "", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b88f74d2-bafd-4cc7-ae13-7a091ce46999", "type": "SemanticModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -785,15 +855,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '423' + - '639' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:03 GMT + - Tue, 02 Jun 2026 13:09:16 GMT Pragma: - no-cache RequestId: - - 00394bec-0496-426e-9431-2694a7728b35 + - fecab62d-38c2-470e-9af5-78a761e63623 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -808,7 +878,15 @@ interactions: code: 200 message: OK - request: - body: '{"type": "SemanticModel", "folderId": null, "displayName": "fabcli000001_new_6", "definition": {"parts": [{"path": "definition.pbism", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vc2VtYW50aWNNb2RlbC9kZWZpbml0aW9uUHJvcGVydGllcy8xLjAuMC9zY2hlbWEuanNvbiIsCiAgICAidmVyc2lvbiI6ICI0LjIiLAogICAgInNldHRpbmdzIjoge30KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU2VtYW50aWNNb2RlbCIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "definition/model.tmdl", "payload": "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxlCgo=", "payloadType": "InlineBase64"}, {"path": "definition/database.tmdl", "payload": "ZGF0YWJhc2UKCWNvbXBhdGliaWxpdHlMZXZlbDogMTU2MQoK", "payloadType": "InlineBase64"}, {"path": "definition/tables/Table.tmdl", "payload": "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", "payloadType": "InlineBase64"}]}}' + body: '{"type": "SemanticModel", "folderId": null, "displayName": "fabcli000001_new_6", + "definition": {"parts": [{"path": "definition.pbism", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vc2VtYW50aWNNb2RlbC9kZWZpbml0aW9uUHJvcGVydGllcy8xLjAuMC9zY2hlbWEuanNvbiIsCiAgICAidmVyc2lvbiI6ICI0LjIiLAogICAgInNldHRpbmdzIjoge30KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU2VtYW50aWNNb2RlbCIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": "definition/database.tmdl", "payload": + "ZGF0YWJhc2UKCWNvbXBhdGliaWxpdHlMZXZlbDogMTU2MQoK", "payloadType": "InlineBase64"}, + {"path": "definition/model.tmdl", "payload": "bW9kZWwgTW9kZWwKCWN1bHR1cmU6IGVuLVVTCglkZWZhdWx0UG93ZXJCSURhdGFTb3VyY2VWZXJzaW9uOiBwb3dlckJJX1YzCglzb3VyY2VRdWVyeUN1bHR1cmU6IGVuLVVTCglkYXRhQWNjZXNzT3B0aW9ucwoJCWxlZ2FjeVJlZGlyZWN0cwoJCXJldHVybkVycm9yVmFsdWVzQXNOdWxsCgphbm5vdGF0aW9uIFBCSV9RdWVyeU9yZGVyID0gWyJUYWJsZSJdCgphbm5vdGF0aW9uIF9fUEJJX1RpbWVJbnRlbGxpZ2VuY2VFbmFibGVkID0gMQoKYW5ub3RhdGlvbiBQQklEZXNrdG9wVmVyc2lvbiA9IDIuMTQwLjc1MTAuMSAoTWFpbikrYjM2NmM1ODEzNGRkNDJkZjk0MmU5YmJhNjUzNzlmM2YyMzk3M2VlMAoKcmVmIHRhYmxlIFRhYmxlCgo=", + "payloadType": "InlineBase64"}, {"path": "definition/tables/Table.tmdl", "payload": + "dGFibGUgVGFibGUKCWxpbmVhZ2VUYWc6IDFmY2QyZDhjLTkzZDYtNGU2Zi1hYjg2LThjMDU5YzhhODk4ZAoKCWNvbHVtbiBDb2x1bW4xCgkJZGF0YVR5cGU6IHN0cmluZwoJCWxpbmVhZ2VUYWc6IGIxNGI3M2UwLTI0NDctNDNlYi04ZWU1LTA2ZDQ3NTMxYzQxZAoJCXN1bW1hcml6ZUJ5OiBub25lCgkJc291cmNlQ29sdW1uOiBDb2x1bW4xCgoJCWFubm90YXRpb24gU3VtbWFyaXphdGlvblNldEJ5ID0gQXV0b21hdGljCgoJY29sdW1uIENvbHVtbjIKCQlkYXRhVHlwZTogc3RyaW5nCgkJbGluZWFnZVRhZzogZGE5YWMzNDUtMTFmMS00NGY5LThlNGItMDJjZmNhZGI4OTU3CgkJc3VtbWFyaXplQnk6IG5vbmUKCQlzb3VyY2VDb2x1bW46IENvbHVtbjIKCgkJYW5ub3RhdGlvbiBTdW1tYXJpemF0aW9uU2V0QnkgPSBBdXRvbWF0aWMKCglwYXJ0aXRpb24gVGFibGUgPSBtCgkJbW9kZTogaW1wb3J0CgkJc291cmNlID0KCQkJCWxldAoJCQkJICBTb3VyY2UgPSBUYWJsZS5Gcm9tUm93cyhKc29uLkRvY3VtZW50KEJpbmFyeS5EZWNvbXByZXNzKEJpbmFyeS5Gcm9tVGV4dCgiaTQ1V0tqRlUwZ0VSc2JFQSIsIEJpbmFyeUVuY29kaW5nLkJhc2U2NCksIENvbXByZXNzaW9uLkRlZmxhdGUpKSwgbGV0IF90ID0gKCh0eXBlIG51bGxhYmxlIHRleHQpIG1ldGEgW1NlcmlhbGl6ZWQuVGV4dCA9IHRydWVdKSBpbiB0eXBlIHRhYmxlIFtDb2x1bW4xID0gX3QsIENvbHVtbjIgPSBfdF0pLAoJCQkJICAjIkNoYW5nZWQgY29sdW1uIHR5cGUiID0gVGFibGUuVHJhbnNmb3JtQ29sdW1uVHlwZXMoU291cmNlLCB7fSkKCQkJCWluCgkJCQkgICMiQ2hhbmdlZCBjb2x1bW4gdHlwZSIKCglhbm5vdGF0aW9uIFBCSV9SZXN1bHRUeXBlID0gVGFibGUKCg==", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -818,13 +896,12 @@ interactions: - keep-alive Content-Length: - '2869' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -840,13 +917,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:04 GMT + - Tue, 02 Jun 2026 13:09:16 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b2bbac8-d0f0-420e-9a73-ed04388e8962 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/689ed03f-3a5f-4489-84d0-da382b5fcbf5 Pragma: - no-cache RequestId: - - 7f748ffa-b119-4a5f-9fa5-34b24021f3e9 + - 1e30b598-891f-48a4-aacf-4200834bc041 Retry-After: - '20' Strict-Transport-Security: @@ -860,7 +937,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 5b2bbac8-d0f0-420e-9a73-ed04388e8962 + - 689ed03f-3a5f-4489-84d0-da382b5fcbf5 status: code: 202 message: Accepted @@ -876,13 +953,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b2bbac8-d0f0-420e-9a73-ed04388e8962 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/689ed03f-3a5f-4489-84d0-da382b5fcbf5 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:30:05.1305763", - "lastUpdatedTimeUtc": "2026-04-14T12:30:15.8909331", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:09:17.7622927", + "lastUpdatedTimeUtc": "2026-06-02T13:09:29.235317", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -892,17 +969,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:25 GMT + - Tue, 02 Jun 2026 13:09:37 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b2bbac8-d0f0-420e-9a73-ed04388e8962/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/689ed03f-3a5f-4489-84d0-da382b5fcbf5/result Pragma: - no-cache RequestId: - - 3381a9f5-9d7c-487f-b409-3b4f25958f5d + - 0defd839-9ae6-4b40-9b8e-c37f44fd9b76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -910,7 +987,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 5b2bbac8-d0f0-420e-9a73-ed04388e8962 + - 689ed03f-3a5f-4489-84d0-da382b5fcbf5 status: code: 200 message: OK @@ -926,13 +1003,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b2bbac8-d0f0-420e-9a73-ed04388e8962/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/689ed03f-3a5f-4489-84d0-da382b5fcbf5/result response: body: - string: '{"id": "fec5411c-512d-4a39-8f4a-141dbd263869", "type": "SemanticModel", - "displayName": "fabcli000001_new_6", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", + "displayName": "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -943,11 +1020,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:30:26 GMT + - Tue, 02 Jun 2026 13:09:38 GMT Pragma: - no-cache RequestId: - - ade09a63-c8c4-4f54-9cc7-78b771d4dcf4 + - 0e18578b-3266-4e0a-be42-63c32d1e15d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -971,14 +1048,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -987,15 +1065,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:27 GMT + - Tue, 02 Jun 2026 13:09:40 GMT Pragma: - no-cache RequestId: - - d5189562-fe51-4d74-bb6f-9879de3e3a90 + - ec881903-0633-42fb-b080-c4ff89425eb7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1021,26 +1099,38 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "515bc7bc-e86d-44b4-a66d-e04758c2f5bc", - "type": "SemanticModel", "displayName": "fabcli000001", "description": "", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b88f74d2-bafd-4cc7-ae13-7a091ce46999", "type": "SemanticModel", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1049,15 +1139,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '453' + - '667' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:30:27 GMT + - Tue, 02 Jun 2026 13:09:40 GMT Pragma: - no-cache RequestId: - - b2ddbf22-33cc-48d4-beaf-93a4c178e182 + - 1513e430-eec7-413f-9a83-fd25314fa806 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1085,9 +1175,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/515bc7bc-e86d-44b4-a66d-e04758c2f5bc + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b88f74d2-bafd-4cc7-ae13-7a091ce46999 response: body: string: '' @@ -1103,11 +1193,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:30:30 GMT + - Tue, 02 Jun 2026 13:09:45 GMT Pragma: - no-cache RequestId: - - 2b1b34ca-2884-4d74-b265-1c05ca1d7939 + - 988edea4-4c7a-40af-bdb3-cc5fd6cc2ff8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SparkJobDefinition].yaml index 7d3d099f..a82c7b17 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SparkJobDefinition].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[SparkJobDefinition].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:54 GMT + - Tue, 02 Jun 2026 13:06:02 GMT Pragma: - no-cache RequestId: - - b67f7757-8291-4698-8370-827bc6bfb891 + - eaf7396e-fd82-4ccd-ac69-c1efe3001ded Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +90,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '419' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:55 GMT + - Tue, 02 Jun 2026 13:06:02 GMT Pragma: - no-cache RequestId: - - 276a1ce9-ccf6-4116-925f-fcbfe8917927 + - 14201aec-eb83-42c6-acd1-e75b46be3bbd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,14 +124,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -127,15 +152,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '419' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:55 GMT + - Tue, 02 Jun 2026 13:06:03 GMT Pragma: - no-cache RequestId: - - 3d0b5ea6-ca9a-4c16-90e4-63fef35e5b9e + - 8795bc25-fcbb-4338-a2d6-04a1d62884e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,7 +175,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "SparkJobDefinition", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "SparkJobDefinition", "folderId": + null}' headers: Accept: - '*/*' @@ -160,18 +186,16 @@ interactions: - keep-alive Content-Length: - '83' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/sparkJobDefinitions response: body: - string: '{"id": "a241d445-0d9a-4523-8d39-56d316881383", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "0bcf4b60-d610-4786-8f98-f086e69c916e", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -180,17 +204,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '173' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:58 GMT + - Tue, 02 Jun 2026 13:06:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8e16461d-6fe8-4b51-9b96-087522b09eaf + - baffb982-37d8-4723-9912-fef1726d6ee1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -216,14 +240,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -232,15 +257,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:58 GMT + - Tue, 02 Jun 2026 13:06:07 GMT Pragma: - no-cache RequestId: - - b76d9ea4-4490-479b-b339-dce3521b8583 + - 7d1b9d3f-0f61-4d8d-907c-0fba1430fb1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,15 +291,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "a241d445-0d9a-4523-8d39-56d316881383", - "type": "SparkJobDefinition", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "0bcf4b60-d610-4786-8f98-f086e69c916e", + "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -283,15 +321,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '253' + - '473' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:26:59 GMT + - Tue, 02 Jun 2026 13:06:07 GMT Pragma: - no-cache RequestId: - - 56ce9a09-45e7-46dc-a9f0-7bf6aa8b9c1a + - 68d4d45c-4318-4811-9ed6-9ed439257aac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -317,14 +355,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/a241d445-0d9a-4523-8d39-56d316881383 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/0bcf4b60-d610-4786-8f98-f086e69c916e response: body: - string: '{"id": "a241d445-0d9a-4523-8d39-56d316881383", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "0bcf4b60-d610-4786-8f98-f086e69c916e", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -333,17 +370,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '173' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:00 GMT + - Tue, 02 Jun 2026 13:06:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8e17406d-8906-486e-ae48-c6cd3db5665a + - 3f20c196-39d0-460b-b76d-93f3bb35d23e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -371,14 +408,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/a241d445-0d9a-4523-8d39-56d316881383/getDefinition?format=SparkJobDefinitionV1 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/0bcf4b60-d610-4786-8f98-f086e69c916e/getDefinition?format=SparkJobDefinitionV1 response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -388,15 +425,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '616' + - '586' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:02 GMT + - Tue, 02 Jun 2026 13:06:10 GMT Pragma: - no-cache RequestId: - - 1bd276ec-06da-4337-a4a1-a2234160d5a6 + - 440583a2-5778-417e-a7a6-5741e84e498d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -422,14 +459,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -438,15 +476,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:02 GMT + - Tue, 02 Jun 2026 13:06:11 GMT Pragma: - no-cache RequestId: - - 95ba6682-805e-43d5-b5ef-e46911845f12 + - c70121cc-4bf1-4ac4-a308-88ad043c2827 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -472,15 +510,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "a241d445-0d9a-4523-8d39-56d316881383", - "type": "SparkJobDefinition", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "0bcf4b60-d610-4786-8f98-f086e69c916e", + "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -489,15 +540,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '253' + - '473' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:03 GMT + - Tue, 02 Jun 2026 13:06:11 GMT Pragma: - no-cache RequestId: - - 47113b46-fb8f-42d2-a905-608407cb1a98 + - 7363f855-1013-4d02-a5cb-db88456d6197 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -523,15 +574,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "a241d445-0d9a-4523-8d39-56d316881383", - "type": "SparkJobDefinition", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "0bcf4b60-d610-4786-8f98-f086e69c916e", + "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -540,15 +604,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '253' + - '473' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:03 GMT + - Tue, 02 Jun 2026 13:06:12 GMT Pragma: - no-cache RequestId: - - 7ef8504c-4618-46e7-801a-81bfc9ccee38 + - 3509aef0-f939-489a-abab-8da04c44cc01 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -563,9 +627,8 @@ interactions: code: 200 message: OK - request: - body: '{"type": "SparkJobDefinition", "folderId": - null, "displayName": "fabcli000001_new_3", "definition": {"parts": [{"path": - ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + body: '{"type": "SparkJobDefinition", "folderId": null, "displayName": "fabcli000001_new_3", + "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "SparkJobDefinitionV1.json", "payload": "ewogICAgImV4ZWN1dGFibGVGaWxlIjogbnVsbCwKICAgICJkZWZhdWx0TGFrZWhvdXNlQXJ0aWZhY3RJZCI6IG51bGwsCiAgICAibWFpbkNsYXNzIjogbnVsbCwKICAgICJhZGRpdGlvbmFsTGFrZWhvdXNlSWRzIjogW10sCiAgICAicmV0cnlQb2xpY3kiOiBudWxsLAogICAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwKICAgICJhZGRpdGlvbmFsTGlicmFyeVVyaXMiOiBudWxsLAogICAgImxhbmd1YWdlIjogbnVsbCwKICAgICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsCn0=", "payloadType": "InlineBase64"}], "format": "SparkJobDefinitionV1"}}' @@ -577,19 +640,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1184' - + - '1128' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", - "displayName": "fabcli000001_new_3", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", "type": "SparkJobDefinition", + "displayName": "fabcli000001_new_3", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -598,17 +659,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:06 GMT + - Tue, 02 Jun 2026 13:06:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7f5b445f-ccc6-4711-8a02-b2a151474bb7 + - a9d9c816-6af2-41cd-98ad-90ecae60768a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -634,14 +695,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -650,15 +712,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:06 GMT + - Tue, 02 Jun 2026 13:06:16 GMT Pragma: - no-cache RequestId: - - 02a473e5-2e3c-45ec-86a8-58594b644f03 + - 46ca7d13-3dce-477f-bc22-9f3e45f0502c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -684,18 +746,30 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5016045-2d46-4f4c-806c-58caad78c22a", "type": "Notebook", - "displayName": "fabcli000001_new_2", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "a241d445-0d9a-4523-8d39-56d316881383", - "type": "SparkJobDefinition", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", - "displayName": "fabcli000001_new_3", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "0bcf4b60-d610-4786-8f98-f086e69c916e", + "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -704,15 +778,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '286' + - '502' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:27:07 GMT + - Tue, 02 Jun 2026 13:06:16 GMT Pragma: - no-cache RequestId: - - f798c232-1441-4b59-ad05-693a5d5c2fd7 + - 67bc9fdb-550a-446b-a95f-b92c1beaa9dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -740,9 +814,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/a241d445-0d9a-4523-8d39-56d316881383 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/0bcf4b60-d610-4786-8f98-f086e69c916e response: body: string: '' @@ -758,11 +832,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:27:08 GMT + - Tue, 02 Jun 2026 13:06:18 GMT Pragma: - no-cache RequestId: - - 48460b78-78dd-4b58-9764-127073bceb10 + - 97af4539-0da9-4ca3-91a0-92e876a2b31b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[UserDataFunction].yaml index 18ef4da5..e20aa0b9 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[UserDataFunction].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_create_new_item_success[UserDataFunction].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:50 GMT + - Tue, 02 Jun 2026 13:18:03 GMT Pragma: - no-cache RequestId: - - 6fd45161-ccdb-4809-9ebb-da4e284d5434 + - 514b051f-04c7-4a56-967f-1901c8ed11a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,52 +62,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -115,15 +126,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '960' + - '1144' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:50 GMT + - Tue, 02 Jun 2026 13:18:04 GMT Pragma: - no-cache RequestId: - - cb70f4f4-235b-4a23-8a59-517c7bdccbb0 + - bc0cf4c1-a7dc-45c7-a636-1e98341c1183 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -149,52 +160,62 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -203,15 +224,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '960' + - '1144' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:51 GMT + - Tue, 02 Jun 2026 13:18:06 GMT Pragma: - no-cache RequestId: - - e2245e14-610a-4b81-851e-1f0833de3ab1 + - 6c3627e5-379f-4550-9ed8-0ff7a8c73677 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -226,7 +247,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "UserDataFunction", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "UserDataFunction", "folderId": + null}' headers: Accept: - '*/*' @@ -236,18 +258,16 @@ interactions: - keep-alive Content-Length: - '81' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/userdatafunctions + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/userdatafunctions response: body: - string: '{"id": "3dcffca2-3882-4c3c-8a18-e3efa0e688f2", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -256,17 +276,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:54 GMT + - Tue, 02 Jun 2026 13:18:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5b00a8ec-9569-4d11-991e-4a1f1d8e3603 + - 596f3380-8ea1-4655-aa51-9ae44a139e40 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -292,14 +312,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -308,15 +329,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:55 GMT + - Tue, 02 Jun 2026 13:18:09 GMT Pragma: - no-cache RequestId: - - 59cef9ba-7ff6-4807-8265-bf7f31a19dd3 + - 9a09ee37-c624-4979-ba45-202a37f399aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,53 +363,64 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "3dcffca2-3882-4c3c-8a18-e3efa0e688f2", - "type": "UserDataFunction", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -397,15 +429,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1011' + - '1192' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:56 GMT + - Tue, 02 Jun 2026 13:18:10 GMT Pragma: - no-cache RequestId: - - 0d6c3878-ff64-42ec-9d4b-1a549f6f2692 + - 8adb0fee-8b6f-43a5-90d3-5d8251cae301 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -431,14 +463,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3dcffca2-3882-4c3c-8a18-e3efa0e688f2 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915 response: body: - string: '{"id": "3dcffca2-3882-4c3c-8a18-e3efa0e688f2", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -447,17 +478,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:57 GMT + - Tue, 02 Jun 2026 13:18:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a07d257d-3f3c-4fe2-9a94-787c3597dd49 + - ff3c251d-c198-4b7b-a4ad-b41385c3afdb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -485,9 +516,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3dcffca2-3882-4c3c-8a18-e3efa0e688f2/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915/getDefinition response: body: string: 'null' @@ -503,13 +534,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:41:58 GMT + - Tue, 02 Jun 2026 13:18:12 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59dbb5b-d268-4049-a266-7c5ee4c93c52 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1d927d7-0531-43dd-ab65-39debe31f9bd Pragma: - no-cache RequestId: - - 8cc50828-cd28-4f54-a4b4-1b8b01d86280 + - edd955e2-38bf-4e40-b30d-6cff5d50a298 Retry-After: - '20' Strict-Transport-Security: @@ -523,7 +554,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b59dbb5b-d268-4049-a266-7c5ee4c93c52 + - a1d927d7-0531-43dd-ab65-39debe31f9bd status: code: 202 message: Accepted @@ -539,13 +570,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59dbb5b-d268-4049-a266-7c5ee4c93c52 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1d927d7-0531-43dd-ab65-39debe31f9bd response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:41:58.5669351", - "lastUpdatedTimeUtc": "2026-04-14T12:41:58.7483646", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:18:12.7311224", + "lastUpdatedTimeUtc": "2026-06-02T13:18:13.0721907", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -559,13 +590,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:42:18 GMT + - Tue, 02 Jun 2026 13:18:33 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59dbb5b-d268-4049-a266-7c5ee4c93c52/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1d927d7-0531-43dd-ab65-39debe31f9bd/result Pragma: - no-cache RequestId: - - 9fbd0ede-0867-46a8-8f26-5d1793e60573 + - aedd6308-5331-48bd-af06-1cfd7b9c8e83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -573,7 +604,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b59dbb5b-d268-4049-a266-7c5ee4c93c52 + - a1d927d7-0531-43dd-ab65-39debe31f9bd status: code: 200 message: OK @@ -589,13 +620,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59dbb5b-d268-4049-a266-7c5ee4c93c52/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a1d927d7-0531-43dd-ab65-39debe31f9bd/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -607,11 +638,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:42:19 GMT + - Tue, 02 Jun 2026 13:18:34 GMT Pragma: - no-cache RequestId: - - 1ef94a19-9b3e-4edb-afec-8f73df7cebaf + - e1eac052-97e8-49ca-8ff9-c29fb1ae36de Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -635,14 +666,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -651,15 +683,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:42:20 GMT + - Tue, 02 Jun 2026 13:18:34 GMT Pragma: - no-cache RequestId: - - 8c1581b3-3db9-49c5-a155-45d79ae228a6 + - 6fa5685f-5d26-4c0e-a4bb-f95e231f10de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -685,53 +717,64 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "3dcffca2-3882-4c3c-8a18-e3efa0e688f2", - "type": "UserDataFunction", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -740,15 +783,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1011' + - '1192' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:42:21 GMT + - Tue, 02 Jun 2026 13:18:35 GMT Pragma: - no-cache RequestId: - - 6e9b44c9-34f4-4569-9ed4-c5af8957b9c9 + - 9c9ef924-8658-44d1-a68e-6d9e331cda11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -774,53 +817,64 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "3dcffca2-3882-4c3c-8a18-e3efa0e688f2", - "type": "UserDataFunction", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -829,15 +883,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1011' + - '1192' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:42:22 GMT + - Tue, 02 Jun 2026 13:18:36 GMT Pragma: - no-cache RequestId: - - 36c2fe2e-841a-4d69-af1d-9d2440f510ac + - 88b06f3a-ea93-41b3-b477-7557f3633891 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -852,7 +906,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "UserDataFunction", "folderId": null, "displayName": "fabcli000001_new_15", "definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiVXNlckRhdGFGdW5jdGlvbiIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vdXNlckRhdGFGdW5jdGlvbi9kZWZpbml0aW9uLzEuMS4wL3NjaGVtYS5qc29uIiwKICAgICJydW50aW1lIjogIlBZVEhPTiIsCiAgICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwKICAgICJmdW5jdGlvbnMiOiBbXSwKICAgICJsaWJyYXJpZXMiOiB7CiAgICAgICAgInB1YmxpYyI6IFtdLAogICAgICAgICJwcml2YXRlIjogW10KICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' + body: '{"type": "UserDataFunction", "folderId": null, "displayName": "fabcli000001_new_15", + "definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vdXNlckRhdGFGdW5jdGlvbi9kZWZpbml0aW9uLzEuMS4wL3NjaGVtYS5qc29uIiwKICAgICJydW50aW1lIjogIlBZVEhPTiIsCiAgICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwKICAgICJmdW5jdGlvbnMiOiBbXSwKICAgICJsaWJyYXJpZXMiOiB7CiAgICAgICAgInB1YmxpYyI6IFtdLAogICAgICAgICJwcml2YXRlIjogW10KICAgIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiVXNlckRhdGFGdW5jdGlvbiIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -861,14 +918,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1127' - + - '1071' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -884,15 +940,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:42:23 GMT + - Tue, 02 Jun 2026 13:18:37 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dba0bb5a-7f07-4649-ac4b-9b4948d4f804 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e9a2226-f64f-4dc3-bff5-63d8bc704f97 Pragma: - no-cache RequestId: - - 04381211-b6ee-46f3-a161-54c1693eee9b + - a299c08f-c0cf-4ff1-8abd-ccbbebbca978 Retry-After: - '20' Strict-Transport-Security: @@ -906,7 +962,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - dba0bb5a-7f07-4649-ac4b-9b4948d4f804 + - 2e9a2226-f64f-4dc3-bff5-63d8bc704f97 status: code: 202 message: Accepted @@ -922,13 +978,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dba0bb5a-7f07-4649-ac4b-9b4948d4f804 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e9a2226-f64f-4dc3-bff5-63d8bc704f97 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:42:23.108325", - "lastUpdatedTimeUtc": "2026-04-14T12:42:26.1296661", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:18:37.5284248", + "lastUpdatedTimeUtc": "2026-06-02T13:18:40.4977602", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -938,17 +994,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:42:43 GMT + - Tue, 02 Jun 2026 13:18:58 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dba0bb5a-7f07-4649-ac4b-9b4948d4f804/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e9a2226-f64f-4dc3-bff5-63d8bc704f97/result Pragma: - no-cache RequestId: - - 725c446f-1ad7-4c93-b8f5-8334248827e8 + - 7aa09313-b465-41e8-a108-fa5654a9dc0a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -956,7 +1012,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - dba0bb5a-7f07-4649-ac4b-9b4948d4f804 + - 2e9a2226-f64f-4dc3-bff5-63d8bc704f97 status: code: 200 message: OK @@ -972,14 +1028,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dba0bb5a-7f07-4649-ac4b-9b4948d4f804/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e9a2226-f64f-4dc3-bff5-63d8bc704f97/result response: body: - string: '{"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -990,11 +1045,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:42:44 GMT + - Tue, 02 Jun 2026 13:18:58 GMT Pragma: - no-cache RequestId: - - f2a49691-fce8-4c28-a6cf-406a2a0728a3 + - 88338981-2b04-4b0e-8a9d-322131de3c7d Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1018,14 +1073,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1034,15 +1090,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2163' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:42:45 GMT + - Tue, 02 Jun 2026 13:19:00 GMT Pragma: - no-cache RequestId: - - ff61c112-0120-4306-8e71-9b9e4350e605 + - 0bc96125-ac99-4d2c-b0cb-71dff56d34c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1068,56 +1124,66 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "3dcffca2-3882-4c3c-8a18-e3efa0e688f2", - "type": "UserDataFunction", "displayName": "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", "type": "UserDataFunction", - "displayName": "fabcli000001_new_15", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1126,15 +1192,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1042' + - '1224' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:42:46 GMT + - Tue, 02 Jun 2026 13:19:00 GMT Pragma: - no-cache RequestId: - - 3e07f732-645f-4127-841d-6fb82438062f + - 88f030b3-3969-4f99-a983-fcd62d6f5969 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1162,9 +1228,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3dcffca2-3882-4c3c-8a18-e3efa0e688f2 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/b2f9f63d-1ec8-4f62-b5c6-d3cb41ded915 response: body: string: '' @@ -1180,11 +1246,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:42:47 GMT + - Tue, 02 Jun 2026 13:19:01 GMT Pragma: - no-cache RequestId: - - 2f24a039-84d6-4820-85c0-7c7a551f934d + - 16815584-0b60-4dc4-950b-3a8bad6bbf3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_home_directory_path_success.yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_home_directory_path_success.yaml index 5e63236d..2e7de5c1 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_home_directory_path_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_home_directory_path_success.yaml @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:20 GMT + - Tue, 02 Jun 2026 13:24:12 GMT Pragma: - no-cache RequestId: - - a7dbe28f-0b62-47f3-aaec-d768a2d1c794 + - c37b3075-6fb8-4a02-b146-485327ebc373 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,30 +64,85 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "751c1f18-e2a1-4bb3-9bdf-a28f9358bf2b", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -96,15 +151,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:21 GMT + - Tue, 02 Jun 2026 13:24:14 GMT Pragma: - no-cache RequestId: - - ec778439-bf33-4351-9b56-d0b532032ddd + - 2ed80b2b-2318-403f-807c-a3c4f6dcd73b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -132,30 +187,85 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "751c1f18-e2a1-4bb3-9bdf-a28f9358bf2b", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -164,15 +274,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '1563' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:22 GMT + - Tue, 02 Jun 2026 13:24:14 GMT Pragma: - no-cache RequestId: - - a0c50303-7e8b-4299-ab5c-7f33a8a59037 + - 06d12c7d-43c6-45e8-ad34-dcb4d14213fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -204,7 +314,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/notebooks response: body: string: 'null' @@ -220,15 +330,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:24 GMT + - Tue, 02 Jun 2026 13:24:16 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc3bdd3e-209f-4c87-89fb-88c400948049 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/343f9b2c-2558-4d52-a99a-4536bd85fb6a Pragma: - no-cache RequestId: - - bcdb0097-7113-411f-8282-4edb685a3193 + - 79d38e54-43ce-4ed3-acc6-6530ed83620c Retry-After: - '20' Strict-Transport-Security: @@ -242,7 +352,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - cc3bdd3e-209f-4c87-89fb-88c400948049 + - 343f9b2c-2558-4d52-a99a-4536bd85fb6a status: code: 202 message: Accepted @@ -260,11 +370,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc3bdd3e-209f-4c87-89fb-88c400948049 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/343f9b2c-2558-4d52-a99a-4536bd85fb6a response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:18:23.7746193", - "lastUpdatedTimeUtc": "2026-05-13T10:18:25.1516043", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:24:16.0294287", + "lastUpdatedTimeUtc": "2026-06-02T13:24:17.0318928", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -274,17 +384,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:45 GMT + - Tue, 02 Jun 2026 13:24:37 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc3bdd3e-209f-4c87-89fb-88c400948049/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/343f9b2c-2558-4d52-a99a-4536bd85fb6a/result Pragma: - no-cache RequestId: - - fc29adea-d31e-4636-90ac-cfb0e8ceb06f + - 435cbed5-8983-491b-ad21-ca7de320d6b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -292,7 +402,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - cc3bdd3e-209f-4c87-89fb-88c400948049 + - 343f9b2c-2558-4d52-a99a-4536bd85fb6a status: code: 200 message: OK @@ -310,11 +420,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc3bdd3e-209f-4c87-89fb-88c400948049/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/343f9b2c-2558-4d52-a99a-4536bd85fb6a/result response: body: - string: '{"id": "9a81661f-fca1-4c6b-b915-074d41fc199b", "type": "Notebook", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "9a1753b1-0d37-4556-b655-b6e494a684ec", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -325,11 +435,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:18:46 GMT + - Tue, 02 Jun 2026 13:24:37 GMT Pragma: - no-cache RequestId: - - 2f664374-8c39-46b6-ada1-1bd13102ba03 + - 19e90409-b9a3-40fe-b029-5d64d8e25149 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -359,7 +469,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -370,15 +480,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:47 GMT + - Tue, 02 Jun 2026 13:24:38 GMT Pragma: - no-cache RequestId: - - 60cf9748-0a60-4432-bf57-830fbda5529b + - daa24b8e-9eee-4b9e-85eb-8020fe502a27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -406,32 +516,87 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "751c1f18-e2a1-4bb3-9bdf-a28f9358bf2b", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "9a81661f-fca1-4c6b-b915-074d41fc199b", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "9a1753b1-0d37-4556-b655-b6e494a684ec", "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -440,15 +605,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '541' + - '1601' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:47 GMT + - Tue, 02 Jun 2026 13:24:39 GMT Pragma: - no-cache RequestId: - - 3a3308cf-6609-4574-9483-987ef014b225 + - bce2db4a-1a7c-4659-b35c-ec222ffaf48b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -476,11 +641,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/9a81661f-fca1-4c6b-b915-074d41fc199b + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9a1753b1-0d37-4556-b655-b6e494a684ec response: body: - string: '{"id": "9a81661f-fca1-4c6b-b915-074d41fc199b", "type": "Notebook", - "displayName": "fabcli000001", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "9a1753b1-0d37-4556-b655-b6e494a684ec", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -489,17 +654,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '152' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:48 GMT + - Tue, 02 Jun 2026 13:24:39 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e29bb40d-20df-47ad-881b-ab0051772ac0 + - 96bd55b0-736d-41a2-9307-affc2e89b0d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -529,7 +694,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/9a81661f-fca1-4c6b-b915-074d41fc199b/getDefinition?format=ipynb + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9a1753b1-0d37-4556-b655-b6e494a684ec/getDefinition?format=ipynb response: body: string: 'null' @@ -545,13 +710,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:18:49 GMT + - Tue, 02 Jun 2026 13:24:40 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df5314e0-e21b-4928-8620-e627456130d0 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8d0f3d7-c4ed-4784-9ebc-f2c7c630cdca Pragma: - no-cache RequestId: - - 1e19ebd6-5610-4e37-9da3-e1bc82e8ed24 + - c29740cc-6727-4f8f-9efd-32150e5ff8b0 Retry-After: - '20' Strict-Transport-Security: @@ -565,7 +730,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - df5314e0-e21b-4928-8620-e627456130d0 + - b8d0f3d7-c4ed-4784-9ebc-f2c7c630cdca status: code: 202 message: Accepted @@ -583,11 +748,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df5314e0-e21b-4928-8620-e627456130d0 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8d0f3d7-c4ed-4784-9ebc-f2c7c630cdca response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:18:49.9948407", - "lastUpdatedTimeUtc": "2026-05-13T10:18:50.4113954", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:24:40.7916361", + "lastUpdatedTimeUtc": "2026-06-02T13:24:41.1567078", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -597,17 +762,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:10 GMT + - Tue, 02 Jun 2026 13:25:01 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df5314e0-e21b-4928-8620-e627456130d0/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8d0f3d7-c4ed-4784-9ebc-f2c7c630cdca/result Pragma: - no-cache RequestId: - - 825a31d2-fa18-43d9-a850-e2017d6b0d31 + - 32876cb9-f1b2-41db-8327-d7812108b298 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -615,7 +780,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - df5314e0-e21b-4928-8620-e627456130d0 + - b8d0f3d7-c4ed-4784-9ebc-f2c7c630cdca status: code: 200 message: OK @@ -633,7 +798,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df5314e0-e21b-4928-8620-e627456130d0/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8d0f3d7-c4ed-4784-9ebc-f2c7c630cdca/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.ipynb", "payload": @@ -650,11 +815,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:19:11 GMT + - Tue, 02 Jun 2026 13:25:02 GMT Pragma: - no-cache RequestId: - - 9700691c-c36e-403e-916c-85d2be25fd59 + - 60df3a1f-2500-46ac-b644-1df5a35af67e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -684,7 +849,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -695,15 +860,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:11 GMT + - Tue, 02 Jun 2026 13:25:03 GMT Pragma: - no-cache RequestId: - - 13e2d8b8-97fd-47af-9de9-458c0bca39f6 + - 7a83839e-0ca7-4100-a8ba-d0bc9121d084 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -731,32 +896,87 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "751c1f18-e2a1-4bb3-9bdf-a28f9358bf2b", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "9a81661f-fca1-4c6b-b915-074d41fc199b", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "9a1753b1-0d37-4556-b655-b6e494a684ec", "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -765,15 +985,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '541' + - '1601' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:12 GMT + - Tue, 02 Jun 2026 13:25:03 GMT Pragma: - no-cache RequestId: - - 6c42f822-83e7-4555-92f3-61e1dadd00c4 + - 87d790a9-44f3-4a22-b4ab-9fff87c01b0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -801,32 +1021,87 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "751c1f18-e2a1-4bb3-9bdf-a28f9358bf2b", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "9a81661f-fca1-4c6b-b915-074d41fc199b", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "9a1753b1-0d37-4556-b655-b6e494a684ec", "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -835,15 +1110,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '541' + - '1601' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:13 GMT + - Tue, 02 Jun 2026 13:25:04 GMT Pragma: - no-cache RequestId: - - 31a7aa92-d3ce-48f3-a75f-488baf8af84a + - d1886b4c-1919-475b-8415-55d500f4cacd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -875,7 +1150,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -886,15 +1161,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:14 GMT + - Tue, 02 Jun 2026 13:25:05 GMT Pragma: - no-cache RequestId: - - bc21db1e-fc24-497e-8fe6-a08faf4dece3 + - 852b011a-b11f-442e-b29a-6baadf0f11ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -926,7 +1201,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -937,15 +1212,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:15 GMT + - Tue, 02 Jun 2026 13:25:06 GMT Pragma: - no-cache RequestId: - - b490f2f0-6da0-4b52-b8c2-fda22cb288b2 + - 23ac67b6-2588-441a-a621-b69505dcb71c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -960,7 +1235,7 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "folderId": null, "displayName": "fabcli000001_new_19", + body: '{"type": "Notebook", "folderId": null, "displayName": "fabcli000001_new_20", "definition": {"parts": [{"path": "notebook-content.ipynb", "payload": "ewogICAgIm5iZm9ybWF0IjogNCwKICAgICJuYmZvcm1hdF9taW5vciI6IDUsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgImxhbmd1YWdlX2luZm8iOiB7CiAgICAgICAgICAgICJuYW1lIjogInB5dGhvbiIKICAgICAgICB9LAogICAgICAgICJrZXJuZWxfaW5mbyI6IHsKICAgICAgICAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIiwKICAgICAgICAgICAgImp1cHl0ZXJfa2VybmVsX25hbWUiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAiYTM2NUNvbXB1dGVPcHRpb25zIjogbnVsbCwKICAgICAgICAic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOiAwLAogICAgICAgICJkZXBlbmRlbmNpZXMiOiB7CiAgICAgICAgICAgICJsYWtlaG91c2UiOiBudWxsCiAgICAgICAgfQogICAgfSwKICAgICJjZWxscyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJjZWxsX3R5cGUiOiAiY29kZSIsCiAgICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgICAgICJtaWNyb3NvZnQiOiB7CiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlIjogInB5dGhvbiIsCiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInNvdXJjZSI6IFsKICAgICAgICAgICAgICAgICIjIFdlbGNvbWUgdG8geW91ciBuZXcgbm90ZWJvb2tcbiIsCiAgICAgICAgICAgICAgICAiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIgogICAgICAgICAgICBdLAogICAgICAgICAgICAib3V0cHV0cyI6IFtdCiAgICAgICAgfQogICAgXQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTm90ZWJvb2siLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}], "format": "ipynb"}}' @@ -972,13 +1247,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1832' + - '1833' Content-Type: - application/json User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: 'null' @@ -994,15 +1269,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:16 GMT + - Tue, 02 Jun 2026 13:25:08 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84d8457b-253c-475a-b369-a4b3ce294f21 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66b76ce7-def1-4022-b769-acf2d370aead Pragma: - no-cache RequestId: - - 1bcbbfd5-3976-4bba-82fe-720945c9b28f + - 1b1196d6-719d-47aa-ae4b-a6cd875310f7 Retry-After: - '20' Strict-Transport-Security: @@ -1016,7 +1291,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 84d8457b-253c-475a-b369-a4b3ce294f21 + - 66b76ce7-def1-4022-b769-acf2d370aead status: code: 202 message: Accepted @@ -1034,11 +1309,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84d8457b-253c-475a-b369-a4b3ce294f21 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66b76ce7-def1-4022-b769-acf2d370aead response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T10:19:17.06961", - "lastUpdatedTimeUtc": "2026-05-13T10:19:17.8244144", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:25:07.7430363", + "lastUpdatedTimeUtc": "2026-06-02T13:25:08.6112402", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1048,17 +1323,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '128' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:38 GMT + - Tue, 02 Jun 2026 13:25:29 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84d8457b-253c-475a-b369-a4b3ce294f21/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66b76ce7-def1-4022-b769-acf2d370aead/result Pragma: - no-cache RequestId: - - ad9858ab-b072-46bf-ace1-b278a3ef90ba + - e7ee6d13-d659-48ba-b52f-ae0d874a4db7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1066,7 +1341,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 84d8457b-253c-475a-b369-a4b3ce294f21 + - 66b76ce7-def1-4022-b769-acf2d370aead status: code: 200 message: OK @@ -1084,11 +1359,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84d8457b-253c-475a-b369-a4b3ce294f21/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66b76ce7-def1-4022-b769-acf2d370aead/result response: body: - string: '{"id": "3cbbe46e-a566-47fc-b113-77d0bfc26481", "type": "Notebook", - "displayName": "fabcli000001_new_19", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}' + string: '{"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", "type": "Notebook", + "displayName": "fabcli000001_new_20", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1099,11 +1374,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 10:19:38 GMT + - Tue, 02 Jun 2026 13:25:29 GMT Pragma: - no-cache RequestId: - - 9a17ff72-43b6-448f-8f20-09dc5755c1e0 + - bcbfbefd-f071-4534-9d54-043987198635 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1133,7 +1408,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "69ad43c8-9a51-43f8-829d-d6163efc373d", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1144,15 +1419,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:39 GMT + - Tue, 02 Jun 2026 13:25:29 GMT Pragma: - no-cache RequestId: - - 08d15c95-3b0f-4ea4-a5b9-e56b2194d721 + - 3b9968fb-3df4-4064-a057-a057d32f8744 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1180,34 +1455,89 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "5d7b4149-49f4-4fc8-89fb-cc3767c11e19", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "513e527a-145a-4f1e-8a47-569e51089cb2", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "751c1f18-e2a1-4bb3-9bdf-a28f9358bf2b", "type": "SQLEndpoint", "displayName": - "fabcli000001_new_18", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "da769db2-b7ec-4d45-b215-5fbf6e04d5c1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "90968799-aaae-4db2-bfee-055ccbbf5ef9", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "517281fe-4793-422e-bfe0-4391b1a11a91", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "288f4d09-48b0-469f-91d2-fcb2a5e47c39", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, - {"id": "85caf835-4587-4b07-838c-b01da8d8f7a6", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "b41bbcf8-16bc-4c87-a950-760813b71ccb", + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": - "", "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "8041ccaf-0625-4948-9b10-1bfb9fc6a5d9", - "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "9a81661f-fca1-4c6b-b915-074d41fc199b", + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "9a1753b1-0d37-4556-b655-b6e494a684ec", "type": "Notebook", "displayName": "fabcli000001", "description": "", "workspaceId": - "69ad43c8-9a51-43f8-829d-d6163efc373d"}, {"id": "3cbbe46e-a566-47fc-b113-77d0bfc26481", - "type": "Notebook", "displayName": "fabcli000001_new_19", "description": "", - "workspaceId": "69ad43c8-9a51-43f8-829d-d6163efc373d"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1216,15 +1546,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '570' + - '1633' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:19:40 GMT + - Tue, 02 Jun 2026 13:25:31 GMT Pragma: - no-cache RequestId: - - e831ef20-e1c7-4ecd-8d6e-89e80aa10d95 + - 0a1b4b00-7ffa-4ecc-bcab-fc4fa8476546 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1254,7 +1584,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/69ad43c8-9a51-43f8-829d-d6163efc373d/items/9a81661f-fca1-4c6b-b915-074d41fc199b + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/9a1753b1-0d37-4556-b655-b6e494a684ec response: body: string: '' @@ -1270,11 +1600,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 10:19:42 GMT + - Tue, 02 Jun 2026 13:25:31 GMT Pragma: - no-cache RequestId: - - 1280f865-7820-4fe9-907e-4e261ea2631b + - 02934c27-a326-4d32-9eed-31ad86084c1c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[DataPipeline].yaml index 3883cf16..f8c1b91d 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[DataPipeline].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[DataPipeline].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2198' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:28 GMT + - Tue, 02 Jun 2026 13:25:55 GMT Pragma: - no-cache RequestId: - - e8c84db3-c9c9-41d2-a03b-e43258d4c71a + - 28ca6b3b-c078-495b-a01d-361cb7ab0fdf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,60 +62,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +153,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:29 GMT + - Tue, 02 Jun 2026 13:25:56 GMT Pragma: - no-cache RequestId: - - 97d2fed9-e7f6-4ec2-a298-1d2e60231e29 + - 3ac34759-2dea-43f0-98f4-170cb9937323 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -157,60 +187,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -219,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:30 GMT + - Tue, 02 Jun 2026 13:25:58 GMT Pragma: - no-cache RequestId: - - 71de368b-e245-4e88-a44b-34b0066626af + - 506021dc-4c5d-420c-9915-ed2ec3a53e95 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[Lakehouse].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[Lakehouse].yaml index a94ec427..869a672d 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[Lakehouse].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[Lakehouse].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2198' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:30 GMT + - Tue, 02 Jun 2026 13:25:58 GMT Pragma: - no-cache RequestId: - - 66a4a3ec-ad3c-4f61-8815-61cb97a7bb55 + - 2914c7e5-2481-4eb2-9b4c-65c38dbed1eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,60 +62,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +153,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:32 GMT + - Tue, 02 Jun 2026 13:25:59 GMT Pragma: - no-cache RequestId: - - 07f3ace6-6f34-478b-8c9c-e0fdfaa1dc66 + - c2fa7232-50a9-4a57-a25b-42d75005252a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -157,60 +187,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -219,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:33 GMT + - Tue, 02 Jun 2026 13:25:59 GMT Pragma: - no-cache RequestId: - - 1c5f317d-5ac0-4305-8574-90fef93b897c + - 0a8f67e3-85de-4ba2-b486-dac843adf4bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[Notebook].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[Notebook].yaml index 717f5904..9e213970 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[Notebook].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[Notebook].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2198' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:22 GMT + - Tue, 02 Jun 2026 13:25:48 GMT Pragma: - no-cache RequestId: - - 675dd2fe-88e0-4a0f-93fa-863dc99734be + - d0cc0c61-e4ed-4e51-abe9-f81d4a13ba94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,60 +62,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +153,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:23 GMT + - Tue, 02 Jun 2026 13:25:49 GMT Pragma: - no-cache RequestId: - - 8966397c-11ce-492d-9741-5aad64c7bc5b + - 539eac2b-196b-403f-a505-c2c08264d012 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -157,60 +187,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -219,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:23 GMT + - Tue, 02 Jun 2026 13:25:50 GMT Pragma: - no-cache RequestId: - - 0cd6e657-7c31-4e7a-98da-04d5d94cc7a7 + - d7c623dd-e0a6-42bf-bc96-4d2caf64f836 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[SemanticModel].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[SemanticModel].yaml index bfe0c5cc..20e6d03c 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[SemanticModel].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[SemanticModel].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2198' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:27 GMT + - Tue, 02 Jun 2026 13:25:53 GMT Pragma: - no-cache RequestId: - - 867ee316-be57-4b0b-9a1e-ef3f2637f5e5 + - abbd218f-80b6-4e22-ba59-b2dda73f4799 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,60 +62,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +153,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:27 GMT + - Tue, 02 Jun 2026 13:25:53 GMT Pragma: - no-cache RequestId: - - fcd48401-26f4-409c-ba7a-7ccbe0871dc8 + - f163d71f-dd5c-4946-8815-29d403448209 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -157,60 +187,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -219,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:28 GMT + - Tue, 02 Jun 2026 13:25:55 GMT Pragma: - no-cache RequestId: - - 468c8bf5-0fb0-476b-b8bb-73e30afc6ea3 + - e5be3be9-a92f-40e0-a86b-924b47a6d02b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[SparkJobDefinition].yaml index 48279db0..43b5eedc 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[SparkJobDefinition].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_item_wrong_format_fail[SparkJobDefinition].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2198' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:24 GMT + - Tue, 02 Jun 2026 13:25:50 GMT Pragma: - no-cache RequestId: - - 6aa35392-3349-4978-9fad-58916366bb99 + - 7faea639-539e-4dcf-a863-094430887e83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,60 +62,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +153,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:24 GMT + - Tue, 02 Jun 2026 13:25:52 GMT Pragma: - no-cache RequestId: - - f085f171-5d71-4a24-92fa-110d163c346b + - 856eb156-e239-487c-91f7-0df97b5a99aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -157,60 +187,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -219,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:25 GMT + - Tue, 02 Jun 2026 13:25:53 GMT Pragma: - no-cache RequestId: - - 4dc74e82-537c-4680-a951-16d195e283c4 + - 3f0747c5-61e0-4b4e-ba2a-d32db0771657 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_lakehouse_path_fail.yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_lakehouse_path_fail.yaml index 873237a0..3beb403b 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_lakehouse_path_fail.yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_lakehouse_path_fail.yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2165' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:10 GMT + - Tue, 02 Jun 2026 13:25:32 GMT Pragma: - no-cache RequestId: - - 76ced20f-3ecb-43a4-b449-f0cb6e2b4a5c + - 2aee0159-df24-468b-a47e-02a7c6f4c2bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,60 +62,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +153,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:11 GMT + - Tue, 02 Jun 2026 13:25:33 GMT Pragma: - no-cache RequestId: - - 5eb2d297-138e-4ab3-82c2-6aff1527abab + - 479b4556-38d4-4848-b7a0-329fd55df7bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -157,60 +187,89 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -219,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1121' + - '1605' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:11 GMT + - Tue, 02 Jun 2026 13:25:35 GMT Pragma: - no-cache RequestId: - - e166c1fc-1700-4736-b9f2-714fed351d6e + - c72bbee4-50ed-4000-a325-329faf090004 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -252,18 +311,16 @@ interactions: - keep-alive Content-Length: - '74' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/lakehouses response: body: - string: '{"id": "52d6dd74-09c7-4729-bb72-4348c1385fc7", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "49b0ee67-21bd-48ec-86ca-f4a26491369c", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -272,17 +329,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:15 GMT + - Tue, 02 Jun 2026 13:25:39 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1f64d428-fd7d-46c1-ade9-b6eaeb812cd7 + - 1c427cbe-cad8-4f36-a7d8-eebeadec736d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -308,14 +365,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -324,15 +382,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2198' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:15 GMT + - Tue, 02 Jun 2026 13:25:41 GMT Pragma: - no-cache RequestId: - - 731f673b-d046-4492-b908-13437ad9eef2 + - fccd38a8-faca-4486-a11d-194e76f0fa11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -358,62 +416,91 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "52d6dd74-09c7-4729-bb72-4348c1385fc7", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "49b0ee67-21bd-48ec-86ca-f4a26491369c", + "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -422,15 +509,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1161' + - '1640' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:16 GMT + - Tue, 02 Jun 2026 13:25:41 GMT Pragma: - no-cache RequestId: - - 1c148f24-cf65-4dcc-9842-e240e1732c45 + - acd3014c-f5e8-49d1-a08e-bfe47ad94828 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -456,62 +543,91 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "52d6dd74-09c7-4729-bb72-4348c1385fc7", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "49b0ee67-21bd-48ec-86ca-f4a26491369c", + "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -520,15 +636,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1161' + - '1640' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:17 GMT + - Tue, 02 Jun 2026 13:25:42 GMT Pragma: - no-cache RequestId: - - d870a5e7-e972-471a-a5e5-9c785fbeeb8f + - 264bddaf-9561-471a-b97f-7b060934f2cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -554,14 +670,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -570,15 +687,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2198' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:17 GMT + - Tue, 02 Jun 2026 13:25:44 GMT Pragma: - no-cache RequestId: - - c4ebb3c3-9288-4f37-8ce3-e160625825ec + - 925e7ada-29b5-4e90-a38b-e2b3ea696ac0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -604,62 +721,91 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "52d6dd74-09c7-4729-bb72-4348c1385fc7", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "49b0ee67-21bd-48ec-86ca-f4a26491369c", + "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -668,15 +814,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1161' + - '1640' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:18 GMT + - Tue, 02 Jun 2026 13:25:45 GMT Pragma: - no-cache RequestId: - - a972a3d7-dfe4-4e99-a1d5-df7bb2583710 + - 82bb549d-da8b-422c-ac40-ed7384c4cf09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -702,14 +848,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -718,15 +865,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2198' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:19 GMT + - Tue, 02 Jun 2026 13:25:45 GMT Pragma: - no-cache RequestId: - - 9e37d2c2-863b-4b32-a24f-e581884b4704 + - de3722b0-7ef7-4e05-8664-5594bb006aaf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -752,64 +899,91 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "1d7eecac-af38-4bb4-82ee-03062d007b10", "type": "Report", - "displayName": "fabcli000001_new_5", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "1b330f3e-8f48-4026-a21a-bc5817181881", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "fec5411c-512d-4a39-8f4a-141dbd263869", - "type": "SemanticModel", "displayName": "fabcli000001_new_6", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "28dc2108-531e-4b55-a739-8af135ae72a5", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_10", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f543056a-9e12-43dc-b666-95f6528bce71", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_13", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "9775907a-5317-44c8-aa9f-4e27fdf0a1af", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_14", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7469172a-fe9f-4fec-9c29-97ee2cc1ec93", - "type": "SQLEndpoint", "displayName": "fabcli000001_new_16", "description": - "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "7eb242c7-6b6d-45d1-a84a-2d4ee76bd398", - "type": "SQLEndpoint", "displayName": "fabcli000001", "description": "", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f5016045-2d46-4f4c-806c-58caad78c22a", - "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "8189a04a-d4c3-4c28-8802-c05978b116a4", "type": "SparkJobDefinition", "displayName": - "fabcli000001_new_3", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "1c3a8948-9ddf-4b21-8b46-b5e463596875", "type": "DataPipeline", "displayName": - "fabcli000001_new_4", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "db07745b-3810-4e81-969c-efed85c39a88", "type": "Eventhouse", "displayName": - "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "ef619912-c062-43a9-998b-bc2ff0848ce9", "type": "KQLDatabase", "displayName": - "fabcli000001_auto", "description": "fabcli000001_auto", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d01a9bc2-4a22-4682-939e-10c085a90b02", "type": "KQLDatabase", "displayName": - "fabcli000001_new_7", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "4e2930d8-9e52-4f58-a75a-c1ee0a49214d", "type": "KQLQueryset", "displayName": - "fabcli000001_new_8", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "25b7944d-90f9-45f7-8322-184539a31775", "type": "Eventhouse", "displayName": - "fabcli000001_new_9", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "7403fd4f-9da4-4279-8d83-a859c2fe9e96", "type": "MirroredDatabase", - "displayName": "fabcli000001_new_10", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "2dc11d9d-129c-49d3-8708-eeab3a791bfc", - "type": "Reflex", "displayName": "fabcli000001_new_11", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "5404eb45-6174-46ca-aad3-8d6993aca218", "type": "KQLDashboard", "displayName": - "fabcli000001_new_12", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "f370db79-ae0d-47d0-9fbe-7cf0855fe45c", - "type": "SQLDatabase", "displayName": "fabcli000001_new_13", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "81ac12ca-6fc3-40fe-8b50-a3d0346a4557", "type": "CosmosDBDatabase", - "displayName": "fabcli000001_new_14", "description": "Imported from fab", - "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "5d03915e-0720-4e66-a9a6-30a58676c6b8", - "type": "UserDataFunction", "displayName": "fabcli000001_new_15", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "b4c96d51-4edb-4dfd-931d-8e8dc96f46dc", "type": "Lakehouse", "displayName": - "fabcli000001_new_16", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": "be1f74a0-5c46-42d6-8760-edbeef4a6c48", - "type": "Notebook", "displayName": "fabcli000001_new_17", "description": "Imported - from fab", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, {"id": - "52d6dd74-09c7-4729-bb72-4348c1385fc7", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "ecb3e483-dfb3-438d-b324-ad4ae515c078", "type": "Report", + "displayName": "fabcli000001_new_5", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3351eb10-5f38-4c77-823c-8c779399100c", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "bd1f8d06-49cd-4629-9687-39510eda3de8", "type": "SemanticModel", "displayName": + "fabcli000001_new_6", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "520ed897-43e5-41dd-b842-7203ea4374bf", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "20f0a1b3-44c6-4e92-b447-1b958964fdc7", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8db59868-e59c-4624-b229-93753f51d39a", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "24919a61-787e-471b-a025-7f4322de041d", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "96e5796c-9dc2-4726-8da0-e9d669c6eabe", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8c54f142-4c30-48a7-ab2d-e91c445aeb09", "type": "SQLEndpoint", "displayName": + "fabcli000001_new_18", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "21a48eb2-10b4-4951-9d91-04b192cdce71", + "type": "Notebook", "displayName": "fabcli000001_new_2", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "b245f128-bce7-42a6-b2c3-3a13fa72c04d", + "type": "SparkJobDefinition", "displayName": "fabcli000001_new_3", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "331ee1f6-a1de-4d69-8774-1890ae153ed0", + "type": "DataPipeline", "displayName": "fabcli000001_new_4", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "35ada142-faf1-4306-a1f9-68e43b1f3e2c", + "type": "Eventhouse", "displayName": "fabcli000001_auto", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "83b00ffa-81f8-4d33-8afe-8f1662e24e94", + "type": "KQLDatabase", "displayName": "fabcli000001_auto", "description": + "fabcli000001_auto", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "3e69ddac-77fe-4b47-9e82-7baf298ec638", "type": "KQLDatabase", "displayName": + "fabcli000001_new_7", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "506dff37-3734-4be6-a0d1-f7ea80cc3d6e", "type": "KQLQueryset", "displayName": + "fabcli000001_new_8", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "2f51191e-91b1-4021-b31d-506a0945aabd", "type": "Eventhouse", "displayName": + "fabcli000001_new_9", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "006b282e-3d4d-4041-8930-c596d5b2e997", "type": "MirroredDatabase", + "displayName": "fabcli000001_new_10", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b887feb9-bb0d-4715-8230-be391980dda6", "type": "Reflex", "displayName": + "fabcli000001_new_11", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "7d26e995-a059-4b28-b779-78187b5104d4", "type": "KQLDashboard", "displayName": + "fabcli000001_new_12", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "9547b6dc-cc69-4707-9e0f-71ed8ccee097", "type": "SQLDatabase", "displayName": + "fabcli000001_new_13", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "de6ced92-aa3f-4835-a2e2-2540cb233b1e", "type": "CosmosDBDatabase", + "displayName": "fabcli000001_new_14", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "be5849d0-c43b-4137-9239-1407cb194cbd", "type": "UserDataFunction", + "displayName": "fabcli000001_new_15", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "df0feaaf-2744-472c-a5ff-5103ca74c23a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "dafff430-4b1c-4a8b-8122-d925831f4587", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_new_16", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "600540c2-80f8-456a-a4f6-d8c27fff7c67", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8bc8f299-ebd1-4bc2-8bb4-fcb8f0fc3527", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "34c077c8-7464-48cb-8ad2-ddc97d4a62fd", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "d6908735-b689-493f-b8ae-7f967f0e5716", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_17", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "314678d7-183b-41ab-a546-2e562572ba02", + "type": "Lakehouse", "displayName": "fabcli000001_new_18", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "8435cb87-83f8-4c08-9147-2c09d4b02040", + "type": "Environment", "displayName": "fabcli000001_new_19", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "fe365eb9-6ff5-4fa8-8fee-badc75744c02", + "type": "Notebook", "displayName": "fabcli000001_new_20", "description": "", + "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "49b0ee67-21bd-48ec-86ca-f4a26491369c", + "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -818,15 +992,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1190' + - '1640' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:45:20 GMT + - Tue, 02 Jun 2026 13:25:46 GMT Pragma: - no-cache RequestId: - - 08b8a456-2764-4cba-8e42-a63ac4c4eaf4 + - 7642a42e-00c9-4152-8587-bfb847008eac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -854,9 +1028,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/52d6dd74-09c7-4729-bb72-4348c1385fc7 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/49b0ee67-21bd-48ec-86ca-f4a26491369c response: body: string: '' @@ -872,11 +1046,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:45:21 GMT + - Tue, 02 Jun 2026 13:25:47 GMT Pragma: - no-cache RequestId: - - c2950230-db7a-4a79-8d54-b453243edfb8 + - d363ede6-be72-414c-90c9-970b6a6b2200 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[CosmosDBDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[CosmosDBDatabase].yaml index 77368683..4bacb4c1 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[CosmosDBDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[CosmosDBDatabase].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:38 GMT + - Tue, 02 Jun 2026 12:58:52 GMT Pragma: - no-cache RequestId: - - c85e6475-b1db-4525-83ed-7e5ec8bbc645 + - 5b5429d1-d9ff-4e0c-85db-41d442fd79f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:38 GMT + - Tue, 02 Jun 2026 12:58:53 GMT Pragma: - no-cache RequestId: - - abde2bef-e9ed-4b59-a3b8-1b8a8171d8d3 + - 80370c50-5cab-4c13-be0c-c6c585dc9082 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:39 GMT + - Tue, 02 Jun 2026 12:58:53 GMT Pragma: - no-cache RequestId: - - 4b982629-9a46-4abd-afdc-eb8642a32980 + - cae616ff-177a-4f15-99ee-76f8b035127d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +147,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "CosmosDBDatabase", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "CosmosDBDatabase", "folderId": + null}' headers: Accept: - '*/*' @@ -156,13 +158,12 @@ interactions: - keep-alive Content-Length: - '81' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/cosmosDbDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/cosmosDbDatabases response: body: string: 'null' @@ -178,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:41 GMT + - Tue, 02 Jun 2026 12:58:56 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/24d446a5-d5b7-448e-8595-761e99afef33 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6bbf4016-7672-4789-a86d-6cc0641a713a Pragma: - no-cache RequestId: - - 9b7cc798-9364-40cf-a142-c3e5bdd6f097 + - 2d8c1bba-32c7-4cef-9b42-4110f073ab3c Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 24d446a5-d5b7-448e-8595-761e99afef33 + - 6bbf4016-7672-4789-a86d-6cc0641a713a status: code: 202 message: Accepted @@ -216,13 +217,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/24d446a5-d5b7-448e-8595-761e99afef33 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6bbf4016-7672-4789-a86d-6cc0641a713a response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:22:40.9080423", - "lastUpdatedTimeUtc": "2026-04-14T12:22:50.4536657", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:58:55.4912681", + "lastUpdatedTimeUtc": "2026-06-02T12:59:05.1642593", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -236,13 +237,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:01 GMT + - Tue, 02 Jun 2026 12:59:16 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/24d446a5-d5b7-448e-8595-761e99afef33/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6bbf4016-7672-4789-a86d-6cc0641a713a/result Pragma: - no-cache RequestId: - - 60582f8b-15fe-4ce0-b361-40f174a19ade + - f60e3d33-f491-42b4-b86a-905df767cb0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 24d446a5-d5b7-448e-8595-761e99afef33 + - 6bbf4016-7672-4789-a86d-6cc0641a713a status: code: 200 message: OK @@ -266,14 +267,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/24d446a5-d5b7-448e-8595-761e99afef33/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6bbf4016-7672-4789-a86d-6cc0641a713a/result response: body: - string: '{"id": "656ee952-4fb1-4d6f-bb04-b57d589fdd84", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +284,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:23:03 GMT + - Tue, 02 Jun 2026 12:59:18 GMT Pragma: - no-cache RequestId: - - 69872eb2-5e65-439e-97be-528b76515fbd + - 132eb874-9fb1-49d7-9ca0-f5e86f06f808 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +312,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +329,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:03 GMT + - Tue, 02 Jun 2026 12:59:18 GMT Pragma: - no-cache RequestId: - - 6f62490d-9c91-468b-a1c0-32789bb73618 + - fd022dda-82a2-4d18-bd7e-96fef5fbf6c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +363,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "656ee952-4fb1-4d6f-bb04-b57d589fdd84", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +378,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '174' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:04 GMT + - Tue, 02 Jun 2026 12:59:19 GMT Pragma: - no-cache RequestId: - - ce94e937-c6c0-4b0d-9ed2-6c2394e7e406 + - 4257ff76-a85b-4df6-b1d8-c85726070611 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +412,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/656ee952-4fb1-4d6f-bb04-b57d589fdd84 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d response: body: - string: '{"id": "656ee952-4fb1-4d6f-bb04-b57d589fdd84", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +427,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:05 GMT + - Tue, 02 Jun 2026 12:59:20 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bc3cd584-ea78-440d-b7df-83f7880ef5f9 + - f1e7b2ca-f316-47c0-b9e1-ac936aec0f31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,9 +465,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/656ee952-4fb1-4d6f-bb04-b57d589fdd84/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d/getDefinition response: body: string: 'null' @@ -484,13 +483,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:06 GMT + - Tue, 02 Jun 2026 12:59:22 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ae79f71-2d22-46f8-ae26-3925d65bb7a6 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9aff0ef5-dde5-4870-b76c-d8eca89d39cf Pragma: - no-cache RequestId: - - c65c5ae4-c699-4ced-87d5-9abb9b328ec4 + - 6e117eed-87a4-46a2-a90e-5147415eba20 Retry-After: - '20' Strict-Transport-Security: @@ -504,7 +503,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 4ae79f71-2d22-46f8-ae26-3925d65bb7a6 + - 9aff0ef5-dde5-4870-b76c-d8eca89d39cf status: code: 202 message: Accepted @@ -520,13 +519,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ae79f71-2d22-46f8-ae26-3925d65bb7a6 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9aff0ef5-dde5-4870-b76c-d8eca89d39cf response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:23:06.8982287", - "lastUpdatedTimeUtc": "2026-04-14T12:23:07.6465187", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:59:22.4793203", + "lastUpdatedTimeUtc": "2026-06-02T12:59:23.4961581", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -540,13 +539,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:27 GMT + - Tue, 02 Jun 2026 12:59:42 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ae79f71-2d22-46f8-ae26-3925d65bb7a6/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9aff0ef5-dde5-4870-b76c-d8eca89d39cf/result Pragma: - no-cache RequestId: - - 6ca25568-c3a9-4188-81f0-466718191aa1 + - 46dd6d8a-93e8-4372-9e6c-2b22701c1b68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -554,7 +553,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 4ae79f71-2d22-46f8-ae26-3925d65bb7a6 + - 9aff0ef5-dde5-4870-b76c-d8eca89d39cf status: code: 200 message: OK @@ -570,13 +569,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4ae79f71-2d22-46f8-ae26-3925d65bb7a6/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9aff0ef5-dde5-4870-b76c-d8eca89d39cf/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -588,11 +587,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:23:27 GMT + - Tue, 02 Jun 2026 12:59:44 GMT Pragma: - no-cache RequestId: - - f9166397-1f6b-45d9-9093-074bfe94343a + - 551aaabc-b69e-424e-8859-32a5ce2bbed7 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -616,14 +615,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -632,15 +632,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:28 GMT + - Tue, 02 Jun 2026 12:59:45 GMT Pragma: - no-cache RequestId: - - 2cc72805-dd94-4536-906b-2136a26769b7 + - edc7b9d0-d698-44ff-a091-f5858314b419 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -666,16 +666,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5613173-65e6-45e4-a1b1-bb7b0568a89d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "656ee952-4fb1-4d6f-bb04-b57d589fdd84", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "98a14482-de83-48ac-b074-4a318276c43d", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,15 +683,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '233' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:30 GMT + - Tue, 02 Jun 2026 12:59:46 GMT Pragma: - no-cache RequestId: - - 75111aa2-331e-4bfa-8217-ee67265b940b + - 3aa0f6fa-be38-4a42-af2d-a1df9bbfc9c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -707,8 +706,8 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiQ29zbW9zREJEYXRhYmFzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", - "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vQ29zbW9zREIvZGVmaW5pdGlvbi9Db3Ntb3NEQi8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAiY29udGFpbmVycyI6IFtdCn0=", + body: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vQ29zbW9zREIvZGVmaW5pdGlvbi9Db3Ntb3NEQi8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAiY29udGFpbmVycyI6IFtdCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiQ29zbW9zREJEYXRhYmFzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -718,13 +717,13 @@ interactions: Connection: - keep-alive Content-Length: - - '871' + - '815' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/656ee952-4fb1-4d6f-bb04-b57d589fdd84/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d/updateDefinition response: body: string: 'null' @@ -740,13 +739,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:31 GMT + - Tue, 02 Jun 2026 12:59:49 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/10b2812f-03a8-4267-93f2-9de60852a33d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/631034ba-cdb9-407e-b056-5dfcbb86650c Pragma: - no-cache RequestId: - - 71d606fa-d0a8-442b-970c-b51301b54a78 + - 73365005-fda6-4119-80fc-4483900a96ce Retry-After: - '20' Strict-Transport-Security: @@ -760,7 +759,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 10b2812f-03a8-4267-93f2-9de60852a33d + - 631034ba-cdb9-407e-b056-5dfcbb86650c status: code: 202 message: Accepted @@ -776,13 +775,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/10b2812f-03a8-4267-93f2-9de60852a33d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/631034ba-cdb9-407e-b056-5dfcbb86650c response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:23:31.4824042", - "lastUpdatedTimeUtc": "2026-04-14T12:23:31.6772921", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:59:49.8885378", + "lastUpdatedTimeUtc": "2026-06-02T12:59:50.1343242", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -792,17 +791,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:51 GMT + - Tue, 02 Jun 2026 13:00:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/10b2812f-03a8-4267-93f2-9de60852a33d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/631034ba-cdb9-407e-b056-5dfcbb86650c/result Pragma: - no-cache RequestId: - - 52456f78-cae9-4442-abff-bab54e8435ae + - ea8c7338-d9b8-40b9-aba2-86c59c2ca4df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -810,7 +809,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 10b2812f-03a8-4267-93f2-9de60852a33d + - 631034ba-cdb9-407e-b056-5dfcbb86650c status: code: 200 message: OK @@ -826,14 +825,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/10b2812f-03a8-4267-93f2-9de60852a33d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/631034ba-cdb9-407e-b056-5dfcbb86650c/result response: body: - string: '{"id": "656ee952-4fb1-4d6f-bb04-b57d589fdd84", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -844,11 +842,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:23:52 GMT + - Tue, 02 Jun 2026 13:00:11 GMT Pragma: - no-cache RequestId: - - 9f5ede12-42bf-4ffb-8ef3-35263a8f33e5 + - 2db1e76b-47ef-459b-b7e6-a99504896a10 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -872,14 +870,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -888,15 +887,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:53 GMT + - Tue, 02 Jun 2026 13:00:11 GMT Pragma: - no-cache RequestId: - - 085333eb-c4b1-4a24-90d8-099731c4aa2a + - 3312c8a0-4209-46b9-aeea-132385e0b596 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,16 +921,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "f5613173-65e6-45e4-a1b1-bb7b0568a89d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "656ee952-4fb1-4d6f-bb04-b57d589fdd84", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "98a14482-de83-48ac-b074-4a318276c43d", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -940,15 +938,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '233' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:55 GMT + - Tue, 02 Jun 2026 13:00:12 GMT Pragma: - no-cache RequestId: - - 89c5be98-8a4d-4df7-9fd5-6a214272bcc4 + - 7a479038-7c0f-49d2-b268-672cf8004579 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -976,9 +974,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/656ee952-4fb1-4d6f-bb04-b57d589fdd84 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/78a3cc9a-7ccc-4f03-a6a2-11eda823bf0d response: body: string: '' @@ -994,11 +992,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:23:55 GMT + - Tue, 02 Jun 2026 13:00:13 GMT Pragma: - no-cache RequestId: - - f7585160-c6f9-4b83-8ec9-4295ef259a46 + - fc0445e4-7421-4302-9e17-3248accf48f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DataPipeline].yaml index da4979d8..4a4f9ef2 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DataPipeline].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DataPipeline].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:39 GMT + - Tue, 02 Jun 2026 12:53:14 GMT Pragma: - no-cache RequestId: - - 0f6130d9-1c9a-454d-be96-dca865a85478 + - a9583724-2d70-4888-a7e0-d8dd9cfced44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:41 GMT + - Tue, 02 Jun 2026 12:53:15 GMT Pragma: - no-cache RequestId: - - 7e81b987-6647-4915-af42-1b35dca1d2c7 + - 22530cd3-f47a-4651-a909-a63f0b22e6f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:41 GMT + - Tue, 02 Jun 2026 12:53:15 GMT Pragma: - no-cache RequestId: - - 7d478434-2b4e-40d5-9f3b-3fcfaf96a445 + - d9669dce-301f-41b3-83c7-c4b56a3030a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '77' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/dataPipelines response: body: - string: '{"id": "8e502a59-92e6-4633-a50a-5f0f503d4ed2", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "d639d853-584b-4e45-95be-8c746bebe1e6", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:48 GMT + - Tue, 02 Jun 2026 12:53:26 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 20a8b818-f2b1-4045-84f9-0f802b314aed + - bdf94f1c-c4ed-44e7-b7e6-c87fe852e131 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +211,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:48 GMT + - Tue, 02 Jun 2026 12:53:26 GMT Pragma: - no-cache RequestId: - - 5d73750d-e694-4a9c-a9ad-cb61a70e3d23 + - da419008-61f0-4549-a3e4-3a42b033c858 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "8e502a59-92e6-4633-a50a-5f0f503d4ed2", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "d639d853-584b-4e45-95be-8c746bebe1e6", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:49 GMT + - Tue, 02 Jun 2026 12:53:27 GMT Pragma: - no-cache RequestId: - - b6ad5783-523d-45ea-a91d-72f5657a72ae + - 785111f2-383e-4e78-b862-ee2428f87742 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +311,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8e502a59-92e6-4633-a50a-5f0f503d4ed2 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/d639d853-584b-4e45-95be-8c746bebe1e6 response: body: - string: '{"id": "8e502a59-92e6-4633-a50a-5f0f503d4ed2", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "d639d853-584b-4e45-95be-8c746bebe1e6", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:50 GMT + - Tue, 02 Jun 2026 12:53:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6281c859-9b04-42b2-b737-3694e2e3c2c4 + - 7f3ebe22-62a7-4d67-aea6-34ddde09ff87 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,14 +364,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8e502a59-92e6-4633-a50a-5f0f503d4ed2/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/d639d853-584b-4e45-95be-8c746bebe1e6/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -383,15 +381,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '458' + - '440' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:51 GMT + - Tue, 02 Jun 2026 12:53:29 GMT Pragma: - no-cache RequestId: - - 66db22b9-247f-4eaa-aa7a-8894aa534858 + - 2ad47fb6-8451-48a0-984d-b563392a4d31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -417,14 +415,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -433,15 +432,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:52 GMT + - Tue, 02 Jun 2026 12:53:30 GMT Pragma: - no-cache RequestId: - - 9a625807-92d9-4411-806d-4745b85a974d + - 2f6b1066-34e4-4a14-8d38-9a24c01e11ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,14 +466,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "8e502a59-92e6-4633-a50a-5f0f503d4ed2", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "d639d853-584b-4e45-95be-8c746bebe1e6", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -483,15 +481,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:53 GMT + - Tue, 02 Jun 2026 12:53:30 GMT Pragma: - no-cache RequestId: - - be18dd7a-dc56-484c-8755-b44932fdb615 + - a6a1f7c4-ed02-4035-899a-f5d1f32e012e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -508,7 +506,7 @@ interactions: - request: body: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgImFjdGl2aXRpZXMiOiBbXQogICAgfQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGF0YVBpcGVsaW5lIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGF0YVBpcGVsaW5lIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -518,13 +516,13 @@ interactions: Connection: - keep-alive Content-Length: - - '749' + - '693' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8e502a59-92e6-4633-a50a-5f0f503d4ed2/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/d639d853-584b-4e45-95be-8c746bebe1e6/updateDefinition response: body: string: '' @@ -540,11 +538,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:17:54 GMT + - Tue, 02 Jun 2026 12:53:33 GMT Pragma: - no-cache RequestId: - - 72a35413-2976-4515-b0f6-ec1e15e77d4b + - a86ceb5f-a8d1-4ad0-8c2b-ac0d45f6e856 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -570,14 +568,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -586,15 +585,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:55 GMT + - Tue, 02 Jun 2026 12:53:34 GMT Pragma: - no-cache RequestId: - - ee1e5e33-b57a-4423-bcd5-71de82e03a7b + - 6d62d588-f1e9-4188-871b-6ca25c00f36d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,14 +619,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "8e502a59-92e6-4633-a50a-5f0f503d4ed2", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "d639d853-584b-4e45-95be-8c746bebe1e6", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -636,15 +634,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:56 GMT + - Tue, 02 Jun 2026 12:53:35 GMT Pragma: - no-cache RequestId: - - 1c4f56e5-6725-4907-98d5-6882f74557eb + - b75da172-fbd8-47aa-bf54-c1a7613a3150 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,9 +670,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/8e502a59-92e6-4633-a50a-5f0f503d4ed2 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/d639d853-584b-4e45-95be-8c746bebe1e6 response: body: string: '' @@ -690,11 +688,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:17:56 GMT + - Tue, 02 Jun 2026 12:53:36 GMT Pragma: - no-cache RequestId: - - 38e63619-d581-40c4-a0d6-aae40da95e57 + - 53c93665-d29e-45e8-b637-3a6b0ad7e773 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DigitalTwinBuilderFlow].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DigitalTwinBuilderFlow].yaml index 06eb9ae2..9df29611 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DigitalTwinBuilderFlow].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DigitalTwinBuilderFlow].yaml @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "76f9989d-2734-49e3-84c1-7395a9c92f77", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:16 GMT + - Tue, 02 Jun 2026 13:02:35 GMT Pragma: - no-cache RequestId: - - 3d171e7c-fb77-46f3-9637-f42133c872d5 + - 0c43bece-b792-45f3-91c5-7f71fe23e991 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,26 +64,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -92,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '436' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:16 GMT + - Tue, 02 Jun 2026 13:02:36 GMT Pragma: - no-cache RequestId: - - aec70930-c8b6-4ebf-800b-b04c4db93260 + - 7e8c23fa-326b-4e5d-b7bf-6d0e0031996c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -128,26 +115,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -156,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '436' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:17 GMT + - Tue, 02 Jun 2026 13:02:36 GMT Pragma: - no-cache RequestId: - - 75c98f78-d0fd-4951-8c25-12b222ecff8e + - 4023244d-253e-4e25-b0ff-cbce8d45414a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -195,7 +169,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/digitalTwinBuilders response: body: string: 'null' @@ -211,15 +185,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:20 GMT + - Tue, 02 Jun 2026 13:02:40 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9c5f837-3e8f-448e-ac22-826b13d60de7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c8d2c03-75ed-431e-9b3c-ddf0b2fe485a Pragma: - no-cache RequestId: - - c0a058cd-37a1-4e53-bc6d-8a945a8b9f5d + - 844ed327-c720-48df-a0fb-4a4e4ea5b929 Retry-After: - '20' Strict-Transport-Security: @@ -233,7 +207,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c9c5f837-3e8f-448e-ac22-826b13d60de7 + - 8c8d2c03-75ed-431e-9b3c-ddf0b2fe485a status: code: 202 message: Accepted @@ -251,11 +225,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9c5f837-3e8f-448e-ac22-826b13d60de7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c8d2c03-75ed-431e-9b3c-ddf0b2fe485a response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T06:52:19.4363688", - "lastUpdatedTimeUtc": "2026-05-13T06:52:26.0389708", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:02:38.4025253", + "lastUpdatedTimeUtc": "2026-06-02T13:02:49.0623629", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -265,17 +239,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:41 GMT + - Tue, 02 Jun 2026 13:03:01 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9c5f837-3e8f-448e-ac22-826b13d60de7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c8d2c03-75ed-431e-9b3c-ddf0b2fe485a/result Pragma: - no-cache RequestId: - - f626d8b8-2e18-4bc2-bcab-ffcc5c3927ad + - 4b25a750-9515-4376-ab26-c2a2f7088fba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -283,7 +257,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c9c5f837-3e8f-448e-ac22-826b13d60de7 + - 8c8d2c03-75ed-431e-9b3c-ddf0b2fe485a status: code: 200 message: OK @@ -301,11 +275,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9c5f837-3e8f-448e-ac22-826b13d60de7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c8d2c03-75ed-431e-9b3c-ddf0b2fe485a/result response: body: - string: '{"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}' + string: '{"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -316,11 +290,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 06:52:41 GMT + - Tue, 02 Jun 2026 13:03:02 GMT Pragma: - no-cache RequestId: - - e841794a-6c1e-4385-b8dd-0a931e503f29 + - 4b386b7f-239a-474f-bb08-f22fd494f7c7 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -335,7 +309,7 @@ interactions: - request: body: '{"displayName": "fabcli000001", "type": "DigitalTwinBuilderFlow", "folderId": null, "creationPayload": {"digitalTwinBuilderItemReference": {"referenceType": - "ById", "itemId": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}}}' + "ById", "itemId": "532e8990-80e8-4962-a956-f0c9f8163d75", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}}}' headers: Accept: - '*/*' @@ -350,11 +324,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/digitalTwinBuilderFlows + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/digitalTwinBuilderFlows response: body: - string: '{"id": "b0bcd565-ab38-479b-b587-822139741f92", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}' + string: '{"id": "ca77b403-c7e6-408c-b807-b7db0cda1ba0", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -363,17 +337,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:44 GMT + - Tue, 02 Jun 2026 13:03:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3c47e404-4a54-45a1-8491-a952fa88676c + - 99d58892-b328-458f-b580-3b6faef74bb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -405,7 +379,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "76f9989d-2734-49e3-84c1-7395a9c92f77", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -416,15 +390,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:44 GMT + - Tue, 02 Jun 2026 13:03:06 GMT Pragma: - no-cache RequestId: - - 36081ecd-9ddb-4e41-a15b-e23e7181949f + - bb28a47e-96ee-4b43-903c-580288ae3a51 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -452,36 +426,24 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "659c9afe-be76-4e61-9f81-4a6d4d20eef3", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "5e5e549d-83a9-49aa-8600-388215baf8c8", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "91cab92f-2f98-474c-b43e-3b904819b3bc", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "b0bcd565-ab38-479b-b587-822139741f92", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "ca77b403-c7e6-408c-b807-b7db0cda1ba0", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -490,15 +452,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '586' + - '400' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:45 GMT + - Tue, 02 Jun 2026 13:03:07 GMT Pragma: - no-cache RequestId: - - 1256a970-2d81-41e7-b462-54ce7bf7b60e + - a01c678b-0c31-4632-b6ea-863bb3adee8b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -526,11 +488,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items/b0bcd565-ab38-479b-b587-822139741f92 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ca77b403-c7e6-408c-b807-b7db0cda1ba0 response: body: - string: '{"id": "b0bcd565-ab38-479b-b587-822139741f92", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}' + string: '{"id": "ca77b403-c7e6-408c-b807-b7db0cda1ba0", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -539,17 +501,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:46 GMT + - Tue, 02 Jun 2026 13:03:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 23b2a402-f046-45cb-804a-114cdf177d56 + - 28d0443e-6435-47ba-ae6a-6bf05d8f6a1d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -579,7 +541,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items/b0bcd565-ab38-479b-b587-822139741f92/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ca77b403-c7e6-408c-b807-b7db0cda1ba0/getDefinition response: body: string: 'null' @@ -595,13 +557,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:52:48 GMT + - Tue, 02 Jun 2026 13:03:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fa815e37-8910-4c18-88ec-833d907bdbd5 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/252a292b-9df7-4fea-ae23-776445250dc8 Pragma: - no-cache RequestId: - - 5651fb6f-dae5-49b8-a51a-027a5a5dd98c + - ca2f204a-b429-49fc-821f-c06156e109e9 Retry-After: - '20' Strict-Transport-Security: @@ -615,7 +577,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - fa815e37-8910-4c18-88ec-833d907bdbd5 + - 252a292b-9df7-4fea-ae23-776445250dc8 status: code: 202 message: Accepted @@ -633,11 +595,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fa815e37-8910-4c18-88ec-833d907bdbd5 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/252a292b-9df7-4fea-ae23-776445250dc8 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T06:52:48.3911589", - "lastUpdatedTimeUtc": "2026-05-13T06:52:48.735978", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:03:11.1279017", + "lastUpdatedTimeUtc": "2026-06-02T13:03:11.9967743", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -647,17 +609,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:09 GMT + - Tue, 02 Jun 2026 13:03:31 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fa815e37-8910-4c18-88ec-833d907bdbd5/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/252a292b-9df7-4fea-ae23-776445250dc8/result Pragma: - no-cache RequestId: - - e4e581bf-26a7-4564-b95f-1bef724eb2d7 + - c6d83235-0c89-44c6-876c-ec5b813e6e63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -665,7 +627,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - fa815e37-8910-4c18-88ec-833d907bdbd5 + - 252a292b-9df7-4fea-ae23-776445250dc8 status: code: 200 message: OK @@ -683,10 +645,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fa815e37-8910-4c18-88ec-833d907bdbd5/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/252a292b-9df7-4fea-ae23-776445250dc8/result response: body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiRGlnaXRhbFR3aW5CdWlsZGVySWQiOiAiZjE4MjdmMGQtOTE3YS00ZjZhLTk1MWYtNmIyYWE5N2JmY2YzIiwNCiAgIk9wZXJhdGlvbklkcyI6IFtdLA0KICAiSXNPbkRlbWFuZCI6IGZhbHNlDQp9", + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiRGlnaXRhbFR3aW5CdWlsZGVySWQiOiAiNTMyZTg5OTAtODBlOC00OTYyLWE5NTYtZjBjOWY4MTYzZDc1IiwNCiAgIk9wZXJhdGlvbklkcyI6IFtdLA0KICAiSXNPbkRlbWFuZCI6IGZhbHNlDQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlckZsb3ciLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: @@ -699,11 +661,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 06:53:09 GMT + - Tue, 02 Jun 2026 13:03:32 GMT Pragma: - no-cache RequestId: - - 69774cf2-0025-42ec-bdca-945c92dad368 + - 2394a03d-e824-40a5-b453-09168ae3b001 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -733,7 +695,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "76f9989d-2734-49e3-84c1-7395a9c92f77", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -744,15 +706,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:10 GMT + - Tue, 02 Jun 2026 13:03:33 GMT Pragma: - no-cache RequestId: - - 0f1e92a0-d41f-48ef-9f70-1be66c80f1fc + - 9b4b9d21-4de5-49ac-a73f-8654800f22d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -780,36 +742,24 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "659c9afe-be76-4e61-9f81-4a6d4d20eef3", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "5e5e549d-83a9-49aa-8600-388215baf8c8", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "91cab92f-2f98-474c-b43e-3b904819b3bc", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "b0bcd565-ab38-479b-b587-822139741f92", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "ca77b403-c7e6-408c-b807-b7db0cda1ba0", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -818,15 +768,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '586' + - '400' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:11 GMT + - Tue, 02 Jun 2026 13:03:34 GMT Pragma: - no-cache RequestId: - - 21be6da4-0969-4830-91b0-34ddbb3fb447 + - daffb676-ad38-4e25-9f74-ac146014ffe8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -841,7 +791,7 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIkRpZ2l0YWxUd2luQnVpbGRlcklkIjogImYxODI3ZjBkLTkxN2EtNGY2YS05NTFmLTZiMmFhOTdiZmNmMyIsCiAgICAiT3BlcmF0aW9uSWRzIjogW10sCiAgICAiSXNPbkRlbWFuZCI6IGZhbHNlCn0=", + body: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIkRpZ2l0YWxUd2luQnVpbGRlcklkIjogIjUzMmU4OTkwLTgwZTgtNDk2Mi1hOTU2LWYwYzlmODE2M2Q3NSIsCiAgICAiT3BlcmF0aW9uSWRzIjogW10sCiAgICAiSXNPbkRlbWFuZCI6IGZhbHNlCn0=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGlnaXRhbFR3aW5CdWlsZGVyRmxvdyIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: @@ -858,7 +808,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items/b0bcd565-ab38-479b-b587-822139741f92/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ca77b403-c7e6-408c-b807-b7db0cda1ba0/updateDefinition response: body: string: 'null' @@ -874,13 +824,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:13 GMT + - Tue, 02 Jun 2026 13:03:35 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cd395d28-4d6c-48ed-8bee-fe016709393d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2d3222be-50e7-4968-bb56-39643ab0e569 Pragma: - no-cache RequestId: - - 7931362c-bc8c-497d-9756-142bdcb79567 + - e0cff06b-1934-4496-aebe-661f4a6ad33e Retry-After: - '20' Strict-Transport-Security: @@ -894,7 +844,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - cd395d28-4d6c-48ed-8bee-fe016709393d + - 2d3222be-50e7-4968-bb56-39643ab0e569 status: code: 202 message: Accepted @@ -912,11 +862,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cd395d28-4d6c-48ed-8bee-fe016709393d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2d3222be-50e7-4968-bb56-39643ab0e569 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T06:53:12.9834937", - "lastUpdatedTimeUtc": "2026-05-13T06:53:13.1828949", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:03:36.012959", + "lastUpdatedTimeUtc": "2026-06-02T13:03:36.2014246", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -926,17 +876,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '128' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:33 GMT + - Tue, 02 Jun 2026 13:03:56 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cd395d28-4d6c-48ed-8bee-fe016709393d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2d3222be-50e7-4968-bb56-39643ab0e569/result Pragma: - no-cache RequestId: - - b26f3172-389d-47d9-8d5d-074381b23d64 + - 5e353450-9fb7-4b7d-8499-9777c8a3eb13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -944,7 +894,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - cd395d28-4d6c-48ed-8bee-fe016709393d + - 2d3222be-50e7-4968-bb56-39643ab0e569 status: code: 200 message: OK @@ -962,11 +912,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cd395d28-4d6c-48ed-8bee-fe016709393d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2d3222be-50e7-4968-bb56-39643ab0e569/result response: body: - string: '{"id": "b0bcd565-ab38-479b-b587-822139741f92", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}' + string: '{"id": "ca77b403-c7e6-408c-b807-b7db0cda1ba0", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -977,11 +927,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 06:53:34 GMT + - Tue, 02 Jun 2026 13:03:57 GMT Pragma: - no-cache RequestId: - - f5d41fc6-5b17-4f9c-a4cb-723736522c76 + - d48eb6c4-4e56-4a62-8eb2-34c9749d03f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1011,7 +961,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "76f9989d-2734-49e3-84c1-7395a9c92f77", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1022,15 +972,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:35 GMT + - Tue, 02 Jun 2026 13:03:58 GMT Pragma: - no-cache RequestId: - - f42880dd-db6b-4f60-b570-0e1f6feac9eb + - c97505bc-455a-4a21-8121-a674d19d0c97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1058,36 +1008,24 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "659c9afe-be76-4e61-9f81-4a6d4d20eef3", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "5e5e549d-83a9-49aa-8600-388215baf8c8", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "91cab92f-2f98-474c-b43e-3b904819b3bc", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "b0bcd565-ab38-479b-b587-822139741f92", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "ca77b403-c7e6-408c-b807-b7db0cda1ba0", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001", "description": + "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1096,15 +1034,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '586' + - '400' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:35 GMT + - Tue, 02 Jun 2026 13:03:59 GMT Pragma: - no-cache RequestId: - - 937d940e-df66-45c7-8d77-2d0e7501eb1a + - 18deb42e-07df-4a06-bdc2-33a11c097f1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1134,7 +1072,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items/b0bcd565-ab38-479b-b587-822139741f92 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/ca77b403-c7e6-408c-b807-b7db0cda1ba0 response: body: string: '' @@ -1150,11 +1088,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 06:53:36 GMT + - Tue, 02 Jun 2026 13:04:00 GMT Pragma: - no-cache RequestId: - - 230533dd-b22e-43c8-906b-08ef41636214 + - 173ea44a-7a3e-404a-8124-228b33f843b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DigitalTwinBuilder].yaml index b2afcdbc..b863e41f 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_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": "76f9989d-2734-49e3-84c1-7395a9c92f77", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:37 GMT + - Tue, 02 Jun 2026 13:01:13 GMT Pragma: - no-cache RequestId: - - 71c32a3f-d201-4f85-86d7-3c9cbee323dc + - 05a332b1-5372-42ba-9721-745dfa9c4221 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,34 +64,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "659c9afe-be76-4e61-9f81-4a6d4d20eef3", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "5e5e549d-83a9-49aa-8600-388215baf8c8", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "91cab92f-2f98-474c-b43e-3b904819b3bc", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -100,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '560' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:38 GMT + - Tue, 02 Jun 2026 13:01:14 GMT Pragma: - no-cache RequestId: - - 2f2dad7e-49a5-4d9b-88c8-f4c533c05397 + - 3981d5ce-e511-49c3-9cda-7a6beefcba11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -136,34 +112,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "659c9afe-be76-4e61-9f81-4a6d4d20eef3", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "5e5e549d-83a9-49aa-8600-388215baf8c8", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "91cab92f-2f98-474c-b43e-3b904819b3bc", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -172,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '560' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:39 GMT + - Tue, 02 Jun 2026 13:01:15 GMT Pragma: - no-cache RequestId: - - 0cc7cd13-5fef-44d3-ba89-c589ef647830 + - 6f4ca651-9ff0-4978-805a-63c519d7a819 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -211,7 +163,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/digitalTwinBuilders response: body: string: 'null' @@ -227,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:53:41 GMT + - Tue, 02 Jun 2026 13:01:20 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/753f20eb-8aed-4c05-842b-7de1ef147436 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0deb2a1e-c16d-4fd4-80b9-e035f5e4d768 Pragma: - no-cache RequestId: - - bff4ab73-3b7d-4261-b5b8-a4a914b2cda4 + - b19403a3-fe9b-42d8-8ecd-8ec95542aaa9 Retry-After: - '20' Strict-Transport-Security: @@ -249,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 753f20eb-8aed-4c05-842b-7de1ef147436 + - 0deb2a1e-c16d-4fd4-80b9-e035f5e4d768 status: code: 202 message: Accepted @@ -267,11 +219,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/753f20eb-8aed-4c05-842b-7de1ef147436 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0deb2a1e-c16d-4fd4-80b9-e035f5e4d768 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T06:53:40.9957026", - "lastUpdatedTimeUtc": "2026-05-13T06:53:47.1653403", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:01:16.8782658", + "lastUpdatedTimeUtc": "2026-06-02T13:01:30.9836926", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -281,17 +233,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:02 GMT + - Tue, 02 Jun 2026 13:01:41 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/753f20eb-8aed-4c05-842b-7de1ef147436/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0deb2a1e-c16d-4fd4-80b9-e035f5e4d768/result Pragma: - no-cache RequestId: - - 63398fc4-c852-4985-b0ac-f72f2f744d7e + - 36e28df2-7d18-4a8c-b137-a8b4c94a5112 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -299,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 753f20eb-8aed-4c05-842b-7de1ef147436 + - 0deb2a1e-c16d-4fd4-80b9-e035f5e4d768 status: code: 200 message: OK @@ -317,11 +269,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/753f20eb-8aed-4c05-842b-7de1ef147436/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0deb2a1e-c16d-4fd4-80b9-e035f5e4d768/result response: body: - string: '{"id": "bc9bad4e-1276-4ed8-8288-9f78679e6c6e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}' + string: '{"id": "5d0f0c3d-890a-4184-9560-5727089a9b11", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -332,11 +284,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 06:54:03 GMT + - Tue, 02 Jun 2026 13:01:42 GMT Pragma: - no-cache RequestId: - - 1d7f5f02-32ca-4053-b257-149bbccc3b74 + - 8b5752ff-7660-46b6-ae8c-820c5c1fb2ba Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -366,7 +318,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "76f9989d-2734-49e3-84c1-7395a9c92f77", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -377,15 +329,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:04 GMT + - Tue, 02 Jun 2026 13:01:42 GMT Pragma: - no-cache RequestId: - - 4c57c202-6a9c-4dfa-be3e-00a27ca23d18 + - 859950e3-e9d5-4804-b890-0584d113a621 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -413,42 +365,17 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "659c9afe-be76-4e61-9f81-4a6d4d20eef3", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "b3e4d7fe-a0ea-4dd4-b275-33c0a5883e31", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "5e5e549d-83a9-49aa-8600-388215baf8c8", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "91cab92f-2f98-474c-b43e-3b904819b3bc", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "bc9bad4e-1276-4ed8-8288-9f78679e6c6e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "3f170df8-9c60-4c6e-a76e-20c623f404aa", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "94b6b264-87fc-4337-8b43-42066fbea75d", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "5d0f0c3d-890a-4184-9560-5727089a9b11", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b4069fdf-1c64-4c1a-9268-adf986f4cda7", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -457,15 +384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '684' + - '301' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:05 GMT + - Tue, 02 Jun 2026 13:01:43 GMT Pragma: - no-cache RequestId: - - ac916bbd-6455-42f3-8065-81f4a6377e86 + - 720df0c3-333f-4e98-9d71-8aeae43741b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -493,11 +420,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items/bc9bad4e-1276-4ed8-8288-9f78679e6c6e + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5d0f0c3d-890a-4184-9560-5727089a9b11 response: body: - string: '{"id": "bc9bad4e-1276-4ed8-8288-9f78679e6c6e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}' + string: '{"id": "5d0f0c3d-890a-4184-9560-5727089a9b11", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -506,17 +433,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:06 GMT + - Tue, 02 Jun 2026 13:01:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4bf04794-358c-49d6-99a4-cba8da2226e3 + - a7b889de-190a-406d-83b8-fe106403cb40 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -546,7 +473,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items/bc9bad4e-1276-4ed8-8288-9f78679e6c6e/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5d0f0c3d-890a-4184-9560-5727089a9b11/getDefinition response: body: string: 'null' @@ -562,13 +489,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:07 GMT + - Tue, 02 Jun 2026 13:01:45 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aec25258-9e46-45a0-b6e4-a7a95c694a95 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec69f9b1-d303-4204-95e2-99482395c25a Pragma: - no-cache RequestId: - - 75b0a9b4-f064-4184-af1b-b00e9b89ddf8 + - 06eaf356-2fc8-49cb-8e0a-8601d959f9e7 Retry-After: - '20' Strict-Transport-Security: @@ -582,7 +509,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - aec25258-9e46-45a0-b6e4-a7a95c694a95 + - ec69f9b1-d303-4204-95e2-99482395c25a status: code: 202 message: Accepted @@ -600,11 +527,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aec25258-9e46-45a0-b6e4-a7a95c694a95 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec69f9b1-d303-4204-95e2-99482395c25a response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T06:54:07.4591872", - "lastUpdatedTimeUtc": "2026-05-13T06:54:07.8555978", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:01:45.9426964", + "lastUpdatedTimeUtc": "2026-06-02T13:01:46.9523234", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -618,13 +545,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:28 GMT + - Tue, 02 Jun 2026 13:02:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aec25258-9e46-45a0-b6e4-a7a95c694a95/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec69f9b1-d303-4204-95e2-99482395c25a/result Pragma: - no-cache RequestId: - - 5b7b586b-e4fc-455c-8d60-b6237f22d88a + - a0741d35-607d-444b-ac71-873d8924ba6d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -632,7 +559,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - aec25258-9e46-45a0-b6e4-a7a95c694a95 + - ec69f9b1-d303-4204-95e2-99482395c25a status: code: 200 message: OK @@ -650,10 +577,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aec25258-9e46-45a0-b6e4-a7a95c694a95/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec69f9b1-d303-4204-95e2-99482395c25a/result response: body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiM2YxNzBkZjgtOWM2MC00YzZlLWE3NmUtMjBjNjIzZjQwNGFhIg0KfQ==", + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiMTIzMGNlMWUtNGIxNi00NGM4LTkwZTQtMTc1NmQ3Y2M5NjMzIg0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: @@ -666,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 06:54:28 GMT + - Tue, 02 Jun 2026 13:02:07 GMT Pragma: - no-cache RequestId: - - 5021da57-baf6-4bcc-8e37-1f9c33f4d20a + - cfb8afd3-cf74-4a13-adb4-bace9aad23e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -700,7 +627,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "76f9989d-2734-49e3-84c1-7395a9c92f77", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -711,15 +638,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:29 GMT + - Tue, 02 Jun 2026 13:02:08 GMT Pragma: - no-cache RequestId: - - 7dfe2f8a-8d9b-4137-9f67-8acb60887837 + - 22432cf7-b348-4dfb-9f6b-3afbf148f0d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -747,42 +674,17 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "659c9afe-be76-4e61-9f81-4a6d4d20eef3", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "b3e4d7fe-a0ea-4dd4-b275-33c0a5883e31", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "5e5e549d-83a9-49aa-8600-388215baf8c8", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "91cab92f-2f98-474c-b43e-3b904819b3bc", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "bc9bad4e-1276-4ed8-8288-9f78679e6c6e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "3f170df8-9c60-4c6e-a76e-20c623f404aa", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "94b6b264-87fc-4337-8b43-42066fbea75d", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "5d0f0c3d-890a-4184-9560-5727089a9b11", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b4069fdf-1c64-4c1a-9268-adf986f4cda7", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -791,15 +693,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '684' + - '301' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:31 GMT + - Tue, 02 Jun 2026 13:02:09 GMT Pragma: - no-cache RequestId: - - f3c1e6fc-3d48-4811-8b90-c0cd5511f617 + - 45dcf92c-749f-40b1-a3cb-b48c0f37fef6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -814,7 +716,7 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIkxha2Vob3VzZUlkIjogIjNmMTcwZGY4LTljNjAtNGM2ZS1hNzZlLTIwYzYyM2Y0MDRhYSIKfQ==", + body: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIkxha2Vob3VzZUlkIjogIjEyMzBjZTFlLTRiMTYtNDRjOC05MGU0LTE3NTZkN2NjOTYzMyIKfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRGlnaXRhbFR3aW5CdWlsZGVyIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: @@ -831,7 +733,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items/bc9bad4e-1276-4ed8-8288-9f78679e6c6e/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5d0f0c3d-890a-4184-9560-5727089a9b11/updateDefinition response: body: string: 'null' @@ -847,13 +749,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:31 GMT + - Tue, 02 Jun 2026 13:02:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90ac11c6-93ec-4b32-b512-6a53e8ddeea4 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e141b017-17cb-45c6-96c3-4fc2ac411706 Pragma: - no-cache RequestId: - - 772976ee-6237-45d1-86a8-82558861fd9f + - 6abbbcf0-a6b0-4aff-9a54-8b3bf9b807d2 Retry-After: - '20' Strict-Transport-Security: @@ -867,7 +769,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 90ac11c6-93ec-4b32-b512-6a53e8ddeea4 + - e141b017-17cb-45c6-96c3-4fc2ac411706 status: code: 202 message: Accepted @@ -885,11 +787,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90ac11c6-93ec-4b32-b512-6a53e8ddeea4 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e141b017-17cb-45c6-96c3-4fc2ac411706 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-13T06:54:32.191881", - "lastUpdatedTimeUtc": "2026-05-13T06:54:33.0049022", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:02:10.7761934", + "lastUpdatedTimeUtc": "2026-06-02T13:02:11.6311064", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -899,17 +801,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:53 GMT + - Tue, 02 Jun 2026 13:02:31 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90ac11c6-93ec-4b32-b512-6a53e8ddeea4/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e141b017-17cb-45c6-96c3-4fc2ac411706/result Pragma: - no-cache RequestId: - - d5469a16-f9c8-42bc-acb3-356fa81ed82e + - 6548d1ff-0969-41c2-9c88-7c851f0cd573 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -917,7 +819,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 90ac11c6-93ec-4b32-b512-6a53e8ddeea4 + - e141b017-17cb-45c6-96c3-4fc2ac411706 status: code: 200 message: OK @@ -935,11 +837,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90ac11c6-93ec-4b32-b512-6a53e8ddeea4/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e141b017-17cb-45c6-96c3-4fc2ac411706/result response: body: - string: '{"id": "bc9bad4e-1276-4ed8-8288-9f78679e6c6e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}' + string: '{"id": "5d0f0c3d-890a-4184-9560-5727089a9b11", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -950,11 +852,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 13 May 2026 06:54:53 GMT + - Tue, 02 Jun 2026 13:02:32 GMT Pragma: - no-cache RequestId: - - be4f0458-4b3e-44f7-b9cb-628e62eb956a + - 0a643421-a11b-429d-b966-363afd67ba76 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -984,7 +886,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "76f9989d-2734-49e3-84c1-7395a9c92f77", + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -995,15 +897,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2525' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:54 GMT + - Tue, 02 Jun 2026 13:02:33 GMT Pragma: - no-cache RequestId: - - 8bc530cb-a13b-4eff-a965-b4cfb9dd22e0 + - 4d5319f6-fb20-43b1-be97-9746a1e190eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1031,42 +933,17 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "b3a689d8-8af6-4194-a482-2f20359bff8d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "278413f6-897d-471f-b7b5-84874d1f5831", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "659c9afe-be76-4e61-9f81-4a6d4d20eef3", "type": "SQLEndpoint", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "b3e4d7fe-a0ea-4dd4-b275-33c0a5883e31", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "30a9ac31-cfd9-46c0-af11-9382082bd1ff", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "dcb9c268-10be-479a-926e-07ba2b6dc886", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_new_2", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "d9f34360-e6b5-45dd-8b9b-8717336f833d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "e94c839d-2eaa-4649-b751-6c9cce008c03", "type": "Lakehouse", "displayName": - "fabcli000001_autodtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "4fd72f63-f8d0-4966-915c-22af3d1b5e9c", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": - "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "2cb2d0a8-92be-43b6-9db9-b2886ec052ea", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_new_3", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "f1827f0d-917a-4f6a-951f-6b2aa97bfcf3", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "5e5e549d-83a9-49aa-8600-388215baf8c8", - "type": "Lakehouse", "displayName": "fabcli000001_autodtdm", "description": - "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, {"id": "91cab92f-2f98-474c-b43e-3b904819b3bc", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001_autoOnDemand", - "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "bc9bad4e-1276-4ed8-8288-9f78679e6c6e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "3f170df8-9c60-4c6e-a76e-20c623f404aa", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}, - {"id": "94b6b264-87fc-4337-8b43-42066fbea75d", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "76f9989d-2734-49e3-84c1-7395a9c92f77"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "5d0f0c3d-890a-4184-9560-5727089a9b11", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "b4069fdf-1c64-4c1a-9268-adf986f4cda7", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1075,15 +952,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '684' + - '301' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 06:54:55 GMT + - Tue, 02 Jun 2026 13:02:33 GMT Pragma: - no-cache RequestId: - - 13d10440-cfcb-4439-a42f-41929b571412 + - c59f1df7-1146-4aef-a411-35c00cc6a13d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1113,7 +990,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/76f9989d-2734-49e3-84c1-7395a9c92f77/items/bc9bad4e-1276-4ed8-8288-9f78679e6c6e + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5d0f0c3d-890a-4184-9560-5727089a9b11 response: body: string: '' @@ -1129,11 +1006,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 06:54:56 GMT + - Tue, 02 Jun 2026 13:02:34 GMT Pragma: - no-cache RequestId: - - 5599dbbe-fcb8-4484-b783-cf93af3496a3 + - 410bfc87-d521-49e6-b2f9-76355699e17e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Environment].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Environment].yaml index e606e7a0..032d82ea 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Environment].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Environment].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:58 GMT + - Tue, 02 Jun 2026 12:53:36 GMT Pragma: - no-cache RequestId: - - 1dba39a5-f9e1-4fbe-ad6c-88acdb1512c1 + - ced78cbe-6702-4dd9-83e3-f6dbece53eab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:58 GMT + - Tue, 02 Jun 2026 12:53:38 GMT Pragma: - no-cache RequestId: - - f058d94d-5395-49e8-ab93-40a5e3d8666a + - 90485ed7-547c-4c14-8305-196a7fddbaf7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:17:59 GMT + - Tue, 02 Jun 2026 12:53:38 GMT Pragma: - no-cache RequestId: - - 97c0ddb3-ac77-468c-a52d-bd460c3b62a3 + - 771d3d00-ad98-4d7c-a3d4-a371e9c2162e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '76' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/environments + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/environments response: body: - string: '{"id": "3a709473-96f9-4272-b863-4f0db3347c8b", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "5493ec39-1aca-4cc5-861c-28d7cd595b3a", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:02 GMT + - Tue, 02 Jun 2026 12:53:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c32f5308-3453-4bfb-9fc9-4269716b2787 + - 79f7e04c-987f-457e-a51e-1fa0945f49b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +211,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:02 GMT + - Tue, 02 Jun 2026 12:53:41 GMT Pragma: - no-cache RequestId: - - 8a81419c-58c5-4ab4-a48e-f16171c6defd + - ab78aaee-d790-4217-addb-74ff7bdac96b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "3a709473-96f9-4272-b863-4f0db3347c8b", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "5493ec39-1aca-4cc5-861c-28d7cd595b3a", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:03 GMT + - Tue, 02 Jun 2026 12:53:42 GMT Pragma: - no-cache RequestId: - - 6182295c-70b4-4ebd-acc5-6a07e9da9e4c + - b027d3b4-46e7-4d3e-8b71-8008ea03e0fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +311,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3a709473-96f9-4272-b863-4f0db3347c8b + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5493ec39-1aca-4cc5-861c-28d7cd595b3a response: body: - string: '{"id": "3a709473-96f9-4272-b863-4f0db3347c8b", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "5493ec39-1aca-4cc5-861c-28d7cd595b3a", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:04 GMT + - Tue, 02 Jun 2026 12:53:43 GMT ETag: - '""' Pragma: - no-cache RequestId: - - eea91b72-876a-4b11-8962-3023cd15f567 + - a214b70f-4564-4cd6-8220-4eb29a7ffc59 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,9 +364,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3a709473-96f9-4272-b863-4f0db3347c8b/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5493ec39-1aca-4cc5-861c-28d7cd595b3a/getDefinition response: body: string: 'null' @@ -384,13 +382,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:05 GMT + - Tue, 02 Jun 2026 12:53:43 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22780a9d-e498-49aa-9bc2-62828edf9419 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e9c57299-d5a6-455f-84b3-cf8ecaa119ec Pragma: - no-cache RequestId: - - 6d74cfb5-95d8-4843-af7d-ce8d4f2686b2 + - 6a848fe4-45cb-41ba-8e56-3e60302ac294 Retry-After: - '20' Strict-Transport-Security: @@ -404,7 +402,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 22780a9d-e498-49aa-9bc2-62828edf9419 + - e9c57299-d5a6-455f-84b3-cf8ecaa119ec status: code: 202 message: Accepted @@ -420,13 +418,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22780a9d-e498-49aa-9bc2-62828edf9419 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e9c57299-d5a6-455f-84b3-cf8ecaa119ec response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:18:05.5910719", - "lastUpdatedTimeUtc": "2026-04-14T12:18:05.925407", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:53:44.6337773", + "lastUpdatedTimeUtc": "2026-06-02T12:53:44.9167267", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -440,13 +438,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:26 GMT + - Tue, 02 Jun 2026 12:54:05 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22780a9d-e498-49aa-9bc2-62828edf9419/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e9c57299-d5a6-455f-84b3-cf8ecaa119ec/result Pragma: - no-cache RequestId: - - e0d40c49-7215-46eb-b99c-ff0b03e8eb0b + - ea568bc0-fc73-4273-8888-ea29785662a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -454,7 +452,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 22780a9d-e498-49aa-9bc2-62828edf9419 + - e9c57299-d5a6-455f-84b3-cf8ecaa119ec status: code: 200 message: OK @@ -470,14 +468,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22780a9d-e498-49aa-9bc2-62828edf9419/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e9c57299-d5a6-455f-84b3-cf8ecaa119ec/result response: body: string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -489,11 +487,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:18:26 GMT + - Tue, 02 Jun 2026 12:54:06 GMT Pragma: - no-cache RequestId: - - 80ef0c2c-ef26-4087-a873-408cedf1b00a + - 8b6e47ee-4fea-4342-931e-ae63ddc27ab1 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -517,14 +515,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -533,15 +532,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:27 GMT + - Tue, 02 Jun 2026 12:54:06 GMT Pragma: - no-cache RequestId: - - 601dd0ac-ed45-4f0f-a6c4-8761e8013f6f + - 9917f1ed-61ff-418b-a02d-1a3f04bbf99c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -567,14 +566,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "3a709473-96f9-4272-b863-4f0db3347c8b", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "5493ec39-1aca-4cc5-861c-28d7cd595b3a", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -583,15 +581,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:28 GMT + - Tue, 02 Jun 2026 12:54:07 GMT Pragma: - no-cache RequestId: - - ef366dc5-02c3-4380-be76-a1b921f882a4 + - 8a2c136f-6d97-421d-9e72-7de37acba05a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -606,7 +604,10 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRW52aXJvbm1lbnQiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "payloadType": "InlineBase64"}, {"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -614,90 +615,38 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '928' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/environments/3a709473-96f9-4272-b863-4f0db3347c8b + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5493ec39-1aca-4cc5-861c-28d7cd595b3a/updateDefinition response: body: - string: '{"id": "3a709473-96f9-4272-b863-4f0db3347c8b", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "b0d0ba37-dac6-48aa-89cf-75db879d8d78", "startTime": - "2026-04-14T12:18:01.9879131Z", "endTime": "2026-04-14T12:18:01.9879131Z", - "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": - {"state": "Success"}}}}}' + string: 'null' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId,Location,Retry-After,x-ms-operation-id Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '314' + - '24' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:29 GMT - ETag: - - '""' + - Tue, 02 Jun 2026 12:54:08 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4dd67fe5-1cbc-438d-aaeb-2205271f334e Pragma: - no-cache RequestId: - - d65f6597-69f2-48dc-b316-6eaf64f94a8c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"enableNativeExecutionEngine": false, "driverCores": 8, "driverMemory": - "56g", "executorCores": 8, "executorMemory": "56g", "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}, "runtimeVersion": 1.3}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/environments/3a709473-96f9-4272-b863-4f0db3347c8b/staging/sparkcompute - response: - body: - string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": - "00000000-0000-0000-0000-000000000000"}, "driverCores": 8, "driverMemory": - "56g", "executorCores": 8, "executorMemory": "56g", "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}, "sparkProperties": - {}, "runtimeVersion": "1.3"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - '396' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 12:18:30 GMT - RequestId: - - 93741085-0a23-43c8-af76-f3cfd20d3c39 + - 1bb10db2-a47c-4b7e-9abf-7c4d2c7da54a + Retry-After: + - '20' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -708,9 +657,11 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' + x-ms-operation-id: + - 4dd67fe5-1cbc-438d-aaeb-2205271f334e status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -723,84 +674,41 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/environments/3a709473-96f9-4272-b863-4f0db3347c8b/libraries - response: - body: - string: '{"requestId": "dcd7a511-9093-43d0-ba80-2eb89dea8b3d", "errorCode": - "EnvironmentLibrariesNotFound", "message": "This environment does not have - any published libraries. Please publish libraries."}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - '189' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 12:18:31 GMT - RequestId: - - dcd7a511-9093-43d0-ba80-2eb89dea8b3d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-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: - - EnvironmentLibrariesNotFound - status: - code: 404 - message: Not Found -- 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/e612c1cf-5450-4af1-8113-798350c641ba/environments/3a709473-96f9-4272-b863-4f0db3347c8b/staging/publish + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4dd67fe5-1cbc-438d-aaeb-2205271f334e response: body: - string: '{"publishDetails": {"state": "Success", "targetVersion": "c5a81f1b-7f64-4906-bd00-30f2e5de50e5", - "startTime": "2026-04-14T12:18:33.0271269Z", "endTime": "2026-04-14T12:18:33.6052314Z", - "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": - {"state": "Success"}}}}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:54:09.1615423", + "lastUpdatedTimeUtc": "2026-06-02T12:54:09.9320779", "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: - - '383' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:33 GMT + - Tue, 02 Jun 2026 12:54:29 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4dd67fe5-1cbc-438d-aaeb-2205271f334e/result + Pragma: + - no-cache RequestId: - - f8282e1c-ef58-4eb3-ad52-bf7d501eaf61 + - f9e02d5a-7d8c-410d-b4dd-3dbea4dd62d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-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: + - 4dd67fe5-1cbc-438d-aaeb-2205271f334e status: code: 200 message: OK @@ -816,47 +724,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/environments/3a709473-96f9-4272-b863-4f0db3347c8b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4dd67fe5-1cbc-438d-aaeb-2205271f334e/result response: body: - string: '{"id": "3a709473-96f9-4272-b863-4f0db3347c8b", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "c5a81f1b-7f64-4906-bd00-30f2e5de50e5", "startTime": - "2026-04-14T12:18:33.0271269Z", "endTime": "2026-04-14T12:18:33.6052314Z", - "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": - {"state": "Success"}}}}}' + string: '{"id": "5493ec39-1aca-4cc5-861c-28d7cd595b3a", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - - RequestId,ETag + - RequestId Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '320' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Tue, 14 Apr 2026 12:18:34 GMT - ETag: - - '""' + - Tue, 02 Jun 2026 12:54:30 GMT Pragma: - no-cache RequestId: - - 752cfde9-f1a6-44b2-9bea-a678196d6dfa + - ef0a9a91-1428-4e21-aa2f-58e8f5ddb62c 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 @@ -872,14 +769,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -888,15 +786,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:35 GMT + - Tue, 02 Jun 2026 12:54:31 GMT Pragma: - no-cache RequestId: - - fcb2c8d5-2b05-46f9-ac8b-dcbe69187789 + - af8ea0f9-62b9-4fe2-86eb-5c79a248007b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,14 +820,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "3a709473-96f9-4272-b863-4f0db3347c8b", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "5493ec39-1aca-4cc5-861c-28d7cd595b3a", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -938,15 +835,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:36 GMT + - Tue, 02 Jun 2026 12:54:31 GMT Pragma: - no-cache RequestId: - - b2280ab2-3840-4431-a8e5-66e7a7972823 + - 7331e235-1891-4da4-a001-7dfec6e56c0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,9 +871,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3a709473-96f9-4272-b863-4f0db3347c8b + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5493ec39-1aca-4cc5-861c-28d7cd595b3a response: body: string: '' @@ -992,11 +889,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:18:37 GMT + - Tue, 02 Jun 2026 12:54:32 GMT Pragma: - no-cache RequestId: - - 7aae1741-9143-4851-986e-34f3e3c11afc + - 3d29b81a-cadf-4473-b0eb-80690da23f71 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Eventstream].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Eventstream].yaml index 5301eaed..cc2cf9fd 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Eventstream].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Eventstream].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:37 GMT + - Tue, 02 Jun 2026 12:54:33 GMT Pragma: - no-cache RequestId: - - 40fd9140-23f7-4f9a-87ee-527e2ff776d2 + - 8463b4cb-30f4-411a-83df-9bd7450e77d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:37 GMT + - Tue, 02 Jun 2026 12:54:34 GMT Pragma: - no-cache RequestId: - - 27447e95-c00c-4937-a254-f4e2de017db1 + - 00fd4a56-7997-4fd7-80c4-dd22fb25c80a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:38 GMT + - Tue, 02 Jun 2026 12:54:34 GMT Pragma: - no-cache RequestId: - - d89475a7-7318-4563-b0e0-3dca5a2bbd22 + - d2c29ba1-fcd3-4e4c-8b0f-62b31796f6a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,13 +157,12 @@ interactions: - keep-alive Content-Length: - '76' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/eventstreams + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/eventstreams response: body: string: 'null' @@ -178,15 +178,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:18:39 GMT + - Tue, 02 Jun 2026 12:54:37 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/80cbee2a-57c7-48aa-981b-523d43d7e3c5 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9ee268d5-9cc5-4bc8-b365-f0141968013c Pragma: - no-cache RequestId: - - a2b75294-652b-4ecc-9cdd-955818d727ce + - cd520ead-fe92-4daa-991b-9dfbe0068faf Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +200,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 80cbee2a-57c7-48aa-981b-523d43d7e3c5 + - 9ee268d5-9cc5-4bc8-b365-f0141968013c status: code: 202 message: Accepted @@ -216,13 +216,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/80cbee2a-57c7-48aa-981b-523d43d7e3c5 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9ee268d5-9cc5-4bc8-b365-f0141968013c response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:18:39.760954", - "lastUpdatedTimeUtc": "2026-04-14T12:18:43.7841231", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:54:36.7393206", + "lastUpdatedTimeUtc": "2026-06-02T12:54:39.1005988", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +232,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:00 GMT + - Tue, 02 Jun 2026 12:54:57 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/80cbee2a-57c7-48aa-981b-523d43d7e3c5/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9ee268d5-9cc5-4bc8-b365-f0141968013c/result Pragma: - no-cache RequestId: - - 1fbd88d9-8c16-48ce-96f5-311c10406601 + - 00b92bbd-b697-4058-a38a-66c16fd6f9bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +250,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 80cbee2a-57c7-48aa-981b-523d43d7e3c5 + - 9ee268d5-9cc5-4bc8-b365-f0141968013c status: code: 200 message: OK @@ -266,14 +266,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/80cbee2a-57c7-48aa-981b-523d43d7e3c5/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9ee268d5-9cc5-4bc8-b365-f0141968013c/result response: body: - string: '{"id": "3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "73da1ba0-52d1-4689-b461-f59fde43d45a", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +283,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:19:01 GMT + - Tue, 02 Jun 2026 12:54:58 GMT Pragma: - no-cache RequestId: - - 5a01ea6a-d11b-4ec7-b5f7-3e44d0e5fb5e + - 506a0a98-cc7b-41d6-9f82-2b15f52d9ada Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +311,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +328,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:01 GMT + - Tue, 02 Jun 2026 12:54:59 GMT Pragma: - no-cache RequestId: - - 1524c25d-a2f1-43d7-b4b4-77fe8b82d230 + - 2307d2f1-8bdd-48b6-b00b-b994d6a74968 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +362,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "73da1ba0-52d1-4689-b461-f59fde43d45a", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:03 GMT + - Tue, 02 Jun 2026 12:54:59 GMT Pragma: - no-cache RequestId: - - 7aca4a46-1c31-46cc-8fb6-b7cdc12177f6 + - 97eef123-3a8b-4c45-9c1e-4c2822a2c184 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +411,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/73da1ba0-52d1-4689-b461-f59fde43d45a response: body: - string: '{"id": "3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "73da1ba0-52d1-4689-b461-f59fde43d45a", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +426,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:03 GMT + - Tue, 02 Jun 2026 12:55:01 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5e743f14-1b44-4f37-8ea2-03c4ed91977c + - 196716bf-e96e-415f-93e3-19577b4a0adf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,15 +464,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/73da1ba0-52d1-4689-b461-f59fde43d45a/getDefinition response: body: string: '{"definition": {"parts": [{"path": "eventstream.json", "payload": "ew0KICAic291cmNlcyI6IFtdLA0KICAiZGVzdGluYXRpb25zIjogW10sDQogICJzdHJlYW1zIjogW10sDQogICJvcGVyYXRvcnMiOiBbXSwNCiAgImNvbXBhdGliaWxpdHlMZXZlbCI6ICIxLjEiDQp9", "payloadType": "InlineBase64"}, {"path": "eventstreamProperties.json", "payload": "ew0KICAicmV0ZW50aW9uVGltZUluRGF5cyI6IDEsDQogICJldmVudFRocm91Z2hwdXRMZXZlbCI6ICJMb3ciDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkV2ZW50c3RyZWFtIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkV2ZW50c3RyZWFtIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -484,15 +482,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '542' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:05 GMT + - Tue, 02 Jun 2026 12:55:02 GMT Pragma: - no-cache RequestId: - - 92027cca-c4dc-4b72-88a3-5d159b70f0ac + - 75a0f4f2-6b61-46c7-997f-5a237e1b2901 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +516,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +533,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:06 GMT + - Tue, 02 Jun 2026 12:55:03 GMT Pragma: - no-cache RequestId: - - f985b489-61fe-48dd-88a9-70a3d10d337a + - 46203af7-2ba3-4155-886c-e941c5845c34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +567,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "73da1ba0-52d1-4689-b461-f59fde43d45a", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +582,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:07 GMT + - Tue, 02 Jun 2026 12:55:04 GMT Pragma: - no-cache RequestId: - - 53343ed4-3529-4d51-b838-c59994ef4977 + - bd34f7b8-964a-4b30-bdd4-e22b36207baa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -609,8 +607,8 @@ interactions: - request: body: '{"definition": {"parts": [{"path": "eventstreamProperties.json", "payload": "ewogICAgInJldGVudGlvblRpbWVJbkRheXMiOiAxLAogICAgImV2ZW50VGhyb3VnaHB1dExldmVsIjogIkxvdyIKfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRXZlbnRzdHJlYW0iLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}, {"path": "eventstream.json", "payload": "ewogICAgInNvdXJjZXMiOiBbXSwKICAgICJkZXN0aW5hdGlvbnMiOiBbXSwKICAgICJzdHJlYW1zIjogW10sCiAgICAib3BlcmF0b3JzIjogW10sCiAgICAiY29tcGF0aWJpbGl0eUxldmVsIjogIjEuMSIKfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiRXZlbnRzdHJlYW0iLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -620,37 +618,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1006' + - '954' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/73da1ba0-52d1-4689-b461-f59fde43d45a/updateDefinition response: body: - string: 'null' + string: '' headers: Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id + - RequestId Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '24' + - '0' Content-Type: - - application/json; charset=utf-8 + - application/octet-stream Date: - - Tue, 14 Apr 2026 12:19:08 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3f893db6-7df8-445d-bfe0-34a0aba34016 + - Tue, 02 Jun 2026 12:55:07 GMT Pragma: - no-cache RequestId: - - 3f893db6-7df8-445d-bfe0-34a0aba34016 - Retry-After: - - '20' + - d657d5ce-f710-47c0-ba99-59587fcaa1da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -661,104 +655,6 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' - x-ms-operation-id: - - 3f893db6-7df8-445d-bfe0-34a0aba34016 - 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/3f893db6-7df8-445d-bfe0-34a0aba34016 - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:19:08.0000000", - "lastUpdatedTimeUtc": "2026-04-14T12:19:09.0000000", "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 12:19:28 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3f893db6-7df8-445d-bfe0-34a0aba34016/result - Pragma: - - no-cache - RequestId: - - 3f893db6-7df8-445d-bfe0-34a0aba34017 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 3f893db6-7df8-445d-bfe0-34a0aba34016 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - 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/3f893db6-7df8-445d-bfe0-34a0aba34016/result - response: - body: - string: '{"id": "3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' - 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 12:19:28 GMT - Pragma: - - no-cache - RequestId: - - 3f893db6-7df8-445d-bfe0-34a0aba34018 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny status: code: 200 message: OK @@ -774,14 +670,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -790,15 +687,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:11 GMT + - Tue, 02 Jun 2026 12:55:08 GMT Pragma: - no-cache RequestId: - - af65a9cd-3208-4dd8-9782-798a33fc59ca + - 59887a10-7f00-4090-9159-5af6825bd1c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,14 +721,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "73da1ba0-52d1-4689-b461-f59fde43d45a", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -840,15 +736,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:11 GMT + - Tue, 02 Jun 2026 12:55:09 GMT Pragma: - no-cache RequestId: - - f6744613-90cc-4963-baba-6a0e76a0261a + - f82d55f4-870c-4181-821b-bdd960568312 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -876,9 +772,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/3aeb2b34-c378-4e7b-8d6a-2af0a4cfad03 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/73da1ba0-52d1-4689-b461-f59fde43d45a response: body: string: '' @@ -894,11 +790,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:19:12 GMT + - Tue, 02 Jun 2026 12:55:10 GMT Pragma: - no-cache RequestId: - - dde000c4-b8bd-4a00-9a1e-595ad58ae235 + - 7e2ad95d-93b1-4fe7-ac4e-3aca68a18f12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[KQLDashboard].yaml index 2e410905..d96b17f6 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[KQLDashboard].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[KQLDashboard].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:13 GMT + - Tue, 02 Jun 2026 12:55:10 GMT Pragma: - no-cache RequestId: - - b50704c0-5d39-4d46-b7d8-7438fde4c428 + - 28250840-3c4a-4c2a-a70a-30139cc56717 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:13 GMT + - Tue, 02 Jun 2026 12:55:11 GMT Pragma: - no-cache RequestId: - - eef02561-6a20-4be9-98f3-4527340e1dae + - 655081d2-09a4-40a8-a510-ccf68bae9e63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:14 GMT + - Tue, 02 Jun 2026 12:55:12 GMT Pragma: - no-cache RequestId: - - 3c60e208-a4fa-4f95-8a89-ffe669bbf143 + - e418a980-b374-4d06-89c0-b85ecc1d4276 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '77' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/kqlDashboards + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/kqlDashboards response: body: - string: '{"id": "7e379f39-70aa-4f07-82c4-1ab96424b6f0", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "0dc015c8-c255-4ef7-abbd-6cb7daae210f", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:17 GMT + - Tue, 02 Jun 2026 12:55:14 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a953c46e-22bc-4330-8818-6ed6f4a6f6bf + - cb5e3f26-e0a6-4ac0-aabd-8f000380caee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +211,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:18 GMT + - Tue, 02 Jun 2026 12:55:15 GMT Pragma: - no-cache RequestId: - - 3d7a5953-212d-42e8-b9bb-a6f47f80395f + - a2837df9-2599-4aea-8029-3a46d500aed5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "7e379f39-70aa-4f07-82c4-1ab96424b6f0", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "0dc015c8-c255-4ef7-abbd-6cb7daae210f", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:18 GMT + - Tue, 02 Jun 2026 12:55:15 GMT Pragma: - no-cache RequestId: - - 01c4bd27-64f1-4542-bb25-81f02dfb665e + - 5ca0a151-181a-421b-a9a7-9968aee7f603 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +311,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7e379f39-70aa-4f07-82c4-1ab96424b6f0 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/0dc015c8-c255-4ef7-abbd-6cb7daae210f response: body: - string: '{"id": "7e379f39-70aa-4f07-82c4-1ab96424b6f0", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "0dc015c8-c255-4ef7-abbd-6cb7daae210f", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:19 GMT + - Tue, 02 Jun 2026 12:55:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fc948635-22b5-41dd-866e-9dfe9bc2c515 + - a75cfd97-d3b7-4df7-9a17-bcfbb24f91fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,13 +364,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7e379f39-70aa-4f07-82c4-1ab96424b6f0/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/0dc015c8-c255-4ef7-abbd-6cb7daae210f/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeDashboard.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -382,15 +380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '433' + - '406' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:20 GMT + - Tue, 02 Jun 2026 12:55:18 GMT Pragma: - no-cache RequestId: - - 9ac31cfe-e334-4e8e-bf84-053c15a1e2c9 + - b3bb9732-8753-40a4-90e5-c9a1b6f621a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -416,14 +414,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -432,15 +431,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:21 GMT + - Tue, 02 Jun 2026 12:55:18 GMT Pragma: - no-cache RequestId: - - 426b7d01-f066-46b4-8847-40af03a11854 + - 0e9d6826-95a9-4069-b00d-a6eaaa5e7a8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +465,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "7e379f39-70aa-4f07-82c4-1ab96424b6f0", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "0dc015c8-c255-4ef7-abbd-6cb7daae210f", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -482,15 +480,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:21 GMT + - Tue, 02 Jun 2026 12:55:19 GMT Pragma: - no-cache RequestId: - - ccb1250c-e4b7-499d-ae4f-debed3fb2f75 + - b451ae1a-de29-4b24-818f-a508ee509657 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -506,7 +504,7 @@ interactions: message: OK - request: body: '{"definition": {"parts": [{"path": "RealTimeDashboard.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMRGFzaGJvYXJkIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMRGFzaGJvYXJkIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -516,13 +514,13 @@ interactions: Connection: - keep-alive Content-Length: - - '682' + - '626' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7e379f39-70aa-4f07-82c4-1ab96424b6f0/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/0dc015c8-c255-4ef7-abbd-6cb7daae210f/updateDefinition response: body: string: '' @@ -538,11 +536,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:19:23 GMT + - Tue, 02 Jun 2026 12:55:20 GMT Pragma: - no-cache RequestId: - - 91ea36f8-322f-407b-bda3-d79b8bf807c0 + - 56a7d92b-5a6a-4621-8150-c9defbaed3a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +566,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +583,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:24 GMT + - Tue, 02 Jun 2026 12:55:22 GMT Pragma: - no-cache RequestId: - - 439906c3-458d-4467-8521-8ce041b85630 + - d71026d6-7c82-4142-88b0-e184fdf2c739 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +617,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "7e379f39-70aa-4f07-82c4-1ab96424b6f0", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "0dc015c8-c255-4ef7-abbd-6cb7daae210f", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +632,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:25 GMT + - Tue, 02 Jun 2026 12:55:22 GMT Pragma: - no-cache RequestId: - - 9865a5fa-c5a3-4974-bc08-c266bd4e3f6b + - dbe80be4-3ace-4580-be2e-ff50e04dbf44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,9 +668,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/7e379f39-70aa-4f07-82c4-1ab96424b6f0 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/0dc015c8-c255-4ef7-abbd-6cb7daae210f response: body: string: '' @@ -688,11 +686,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:19:26 GMT + - Tue, 02 Jun 2026 12:55:23 GMT Pragma: - no-cache RequestId: - - 8c638a74-1ec1-4645-af5c-d6fb1e7493a0 + - 76471417-89de-4ba4-bfa0-46ea770e8302 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[KQLQueryset].yaml index dcff58df..02dd16f2 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[KQLQueryset].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[KQLQueryset].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:26 GMT + - Tue, 02 Jun 2026 12:55:23 GMT Pragma: - no-cache RequestId: - - b96b569d-6759-4e34-94ae-297cb381e6f5 + - 663e23ce-99dd-42e5-9d93-179600e8cd07 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:27 GMT + - Tue, 02 Jun 2026 12:55:24 GMT Pragma: - no-cache RequestId: - - bdea53d7-a85b-4162-b00d-117d21fc14bb + - b9f9972b-519d-456e-b279-f8a48f65cb6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:28 GMT + - Tue, 02 Jun 2026 12:55:26 GMT Pragma: - no-cache RequestId: - - f312b282-7b2e-4706-808a-d6eac5dc5a14 + - 6c0f387c-512c-421f-996a-1bbfd4310708 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '76' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/kqlQuerysets + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/kqlQuerysets response: body: - string: '{"id": "31ca10fe-a1b3-4b82-953b-e5c5ce4be012", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "285800d4-c907-4334-babc-40ce7f707904", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:31 GMT + - Tue, 02 Jun 2026 12:55:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3c2ae4b0-e492-46a2-9d02-0641082af305 + - 519e0a5a-2ff8-4de5-9564-d2cbcd5e0c9e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +211,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:31 GMT + - Tue, 02 Jun 2026 12:55:29 GMT Pragma: - no-cache RequestId: - - c7367b8d-0f73-4136-a382-e1e767d03c12 + - 689d078a-bba8-4648-ab4c-93c5fe83213e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "31ca10fe-a1b3-4b82-953b-e5c5ce4be012", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "285800d4-c907-4334-babc-40ce7f707904", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:32 GMT + - Tue, 02 Jun 2026 12:55:28 GMT Pragma: - no-cache RequestId: - - f249a7a6-4a43-4fc8-9a3f-597f0b37997b + - 1a624ecd-a428-468b-9f1c-80368c6dafc8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +311,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/31ca10fe-a1b3-4b82-953b-e5c5ce4be012 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/285800d4-c907-4334-babc-40ce7f707904 response: body: - string: '{"id": "31ca10fe-a1b3-4b82-953b-e5c5ce4be012", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "285800d4-c907-4334-babc-40ce7f707904", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:33 GMT + - Tue, 02 Jun 2026 12:55:29 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d1d73520-d824-49fb-96d2-c4a2285635b5 + - 58cfce29-990e-4b54-927f-3a9742af56df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,13 +364,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/31ca10fe-a1b3-4b82-953b-e5c5ce4be012/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/285800d4-c907-4334-babc-40ce7f707904/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeQueryset.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -382,15 +380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '399' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:34 GMT + - Tue, 02 Jun 2026 12:55:31 GMT Pragma: - no-cache RequestId: - - c4930594-4b2b-4e39-9412-1c38de4ff17c + - dc36813b-3a0c-42cf-8e76-83f1e89d4665 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -416,14 +414,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -432,15 +431,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:35 GMT + - Tue, 02 Jun 2026 12:55:32 GMT Pragma: - no-cache RequestId: - - fd1e24f1-f76e-476b-a1f3-97fe13ca5d49 + - f4bd1e5c-57e5-4468-a593-91547f5a3dfc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +465,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "31ca10fe-a1b3-4b82-953b-e5c5ce4be012", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "285800d4-c907-4334-babc-40ce7f707904", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -482,15 +480,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:36 GMT + - Tue, 02 Jun 2026 12:55:31 GMT Pragma: - no-cache RequestId: - - bd5e1b3e-c61d-4646-b645-6cba770c8ea4 + - f348ca43-1b6f-4881-bba0-0c10503be455 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -505,7 +503,7 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMUXVlcnlzZXQiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiS1FMUXVlcnlzZXQiLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}, {"path": "RealTimeQueryset.json", "payload": "e30=", "payloadType": "InlineBase64"}]}}' headers: @@ -516,13 +514,13 @@ interactions: Connection: - keep-alive Content-Length: - - '677' + - '625' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/31ca10fe-a1b3-4b82-953b-e5c5ce4be012/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/285800d4-c907-4334-babc-40ce7f707904/updateDefinition response: body: string: '' @@ -538,11 +536,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:19:37 GMT + - Tue, 02 Jun 2026 12:55:33 GMT Pragma: - no-cache RequestId: - - c5028c15-4282-4cf2-84e1-66893929d725 + - 745474f4-5e07-409c-85c8-ee3a9265f5b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +566,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +583,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:38 GMT + - Tue, 02 Jun 2026 12:55:35 GMT Pragma: - no-cache RequestId: - - 555bb31f-c322-4ad9-93c6-07b2a51b98bd + - 5279ca53-6ceb-4304-9fc5-85331a9b108f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +617,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "31ca10fe-a1b3-4b82-953b-e5c5ce4be012", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "285800d4-c907-4334-babc-40ce7f707904", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +632,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:38 GMT + - Tue, 02 Jun 2026 12:55:36 GMT Pragma: - no-cache RequestId: - - 155410b0-2b51-4b61-992b-61c7189a21c1 + - b36fa1e9-a4f5-4579-9a74-52638b045602 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,9 +668,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/31ca10fe-a1b3-4b82-953b-e5c5ce4be012 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/285800d4-c907-4334-babc-40ce7f707904 response: body: string: '' @@ -688,11 +686,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:19:39 GMT + - Tue, 02 Jun 2026 12:55:36 GMT Pragma: - no-cache RequestId: - - 8e781f50-1c39-4622-a6ab-b9f874ace8b7 + - fba5f4a1-4cef-459d-8af9-346afb9f1e6d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Lakehouse].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Lakehouse].yaml index 5a9d3c7e..8541dcb5 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Lakehouse].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Lakehouse].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:54 GMT + - Tue, 02 Jun 2026 13:04:00 GMT Pragma: - no-cache RequestId: - - c5fae29c-9a1e-467e-ac37-84ff5ca5e9a4 + - 89846c25-38a2-498d-aa78-b2c1470d4bdc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +88,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '374' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:54 GMT + - Tue, 02 Jun 2026 13:04:01 GMT Pragma: - no-cache RequestId: - - 38bc5223-d8ad-439c-b5bf-ac30b9827893 + - 670452d0-99cb-4293-9ea7-c040467d28c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +122,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +148,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '374' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:55 GMT + - Tue, 02 Jun 2026 13:04:02 GMT Pragma: - no-cache RequestId: - - 1c43c05d-fdc8-4178-a5f6-74158c0ae958 + - 3e5ba42e-1e70-454a-8b89-98745fe4502f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,8 +171,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": - "Lakehouse", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "Lakehouse", "folderId": null}' headers: Accept: - '*/*' @@ -156,18 +180,17 @@ interactions: Connection: - keep-alive Content-Length: - - '107' + - '74' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/lakehouses response: body: - string: '{"id": "acde9d2c-e006-4d00-8448-7679e076ca87", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "1a3b6312-9849-48ee-a55a-5a305de5e44c", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +199,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:00 GMT + - Tue, 02 Jun 2026 13:04:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 198ffd70-8979-4212-8515-bfb6ebe34713 + - efc38128-8b9e-4325-8485-5cc04a4f44d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +235,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +252,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:00 GMT + - Tue, 02 Jun 2026 13:04:08 GMT Pragma: - no-cache RequestId: - - b0a1e1b2-79ba-46bc-a46f-12174b66d81b + - 76116475-bd2f-40dd-a617-b74f803773ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +286,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "acde9d2c-e006-4d00-8448-7679e076ca87", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "1a3b6312-9849-48ee-a55a-5a305de5e44c", + "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +314,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '406' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:02 GMT + - Tue, 02 Jun 2026 13:04:08 GMT Pragma: - no-cache RequestId: - - 031be4f8-481f-4a18-ac6a-982dfbe30bac + - 206e5a23-756b-4950-9ec2-84eb8983c335 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +348,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/acde9d2c-e006-4d00-8448-7679e076ca87 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1a3b6312-9849-48ee-a55a-5a305de5e44c response: body: - string: '{"id": "acde9d2c-e006-4d00-8448-7679e076ca87", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "1a3b6312-9849-48ee-a55a-5a305de5e44c", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +363,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:02 GMT + - Tue, 02 Jun 2026 13:04:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d3d8c772-a2a6-4173-8e4e-1545f0e9bbec + - 855eca59-9f16-4edb-9196-a3c040295837 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,16 +401,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/acde9d2c-e006-4d00-8448-7679e076ca87/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1a3b6312-9849-48ee-a55a-5a305de5e44c/getDefinition response: body: string: '{"definition": {"parts": [{"path": "lakehouse.metadata.json", "payload": "e30=", "payloadType": "InlineBase64"}, {"path": "alm.settings.json", "payload": "ew0KICAidmVyc2lvbiI6ICIxLjAuMSIsDQogICJvYmplY3RUeXBlcyI6IFsNCiAgICB7DQogICAgICAibmFtZSI6ICJTaG9ydGN1dHMiLA0KICAgICAgInN0YXRlIjogIkVuYWJsZWQiLA0KICAgICAgInN1Yk9iamVjdFR5cGVzIjogWw0KICAgICAgICB7DQogICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLk9uZUxha2UiLA0KICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIg0KICAgICAgICB9LA0KICAgICAgICB7DQogICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLkFkbHNHZW4yIiwNCiAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCINCiAgICAgICAgfSwNCiAgICAgICAgew0KICAgICAgICAgICJuYW1lIjogIlNob3J0Y3V0cy5EYXRhdmVyc2UiLA0KICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIg0KICAgICAgICB9LA0KICAgICAgICB7DQogICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLkFtYXpvblMzIiwNCiAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCINCiAgICAgICAgfSwNCiAgICAgICAgew0KICAgICAgICAgICJuYW1lIjogIlNob3J0Y3V0cy5TM0NvbXBhdGlibGUiLA0KICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIg0KICAgICAgICB9LA0KICAgICAgICB7DQogICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLkdvb2dsZUNsb3VkU3RvcmFnZSIsDQogICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiDQogICAgICAgIH0sDQogICAgICAgIHsNCiAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuQXp1cmVCbG9iU3RvcmFnZSIsDQogICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiDQogICAgICAgIH0sDQogICAgICAgIHsNCiAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuT25lRHJpdmVTaGFyZVBvaW50IiwNCiAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCINCiAgICAgICAgfQ0KICAgICAgXQ0KICAgIH0sDQogICAgew0KICAgICAgIm5hbWUiOiAiRGF0YUFjY2Vzc1JvbGVzIiwNCiAgICAgICJzdGF0ZSI6ICJEaXNhYmxlZCINCiAgICB9DQogIF0NCn0=", "payloadType": "InlineBase64"}, {"path": "shortcuts.metadata.json", "payload": - "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkxha2Vob3VzZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkxha2Vob3VzZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -385,15 +420,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '820' + - '785' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:05 GMT + - Tue, 02 Jun 2026 13:04:12 GMT Pragma: - no-cache RequestId: - - 75cc9a9c-4f7a-4f89-8f55-4713a58c6945 + - a0e34fb0-d9e9-46d2-895a-1dddc0f5e385 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,14 +454,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -435,15 +471,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:06 GMT + - Tue, 02 Jun 2026 13:04:13 GMT Pragma: - no-cache RequestId: - - b3f0302d-f167-4d85-ab44-7ed9a8e53c4d + - c6fc6d81-e38c-44c0-94ea-96c4c26942b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -469,14 +505,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "acde9d2c-e006-4d00-8448-7679e076ca87", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "f3f72459-27a4-401a-941a-401c930330f4", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "1a3b6312-9849-48ee-a55a-5a305de5e44c", + "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -485,15 +535,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '434' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:07 GMT + - Tue, 02 Jun 2026 13:04:14 GMT Pragma: - no-cache RequestId: - - 26d48938-d0b3-4538-8214-37b1cea42d6f + - 099477c6-4e66-486e-bd8a-f71e7f7118c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -508,12 +558,11 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": "shortcuts.metadata.json", "payload": - "W10=", "payloadType": "InlineBase64"}, {"path": "lakehouse.metadata.json", - "payload": "e30=", "payloadType": "InlineBase64"}, {"path": "alm.settings.json", - "payload": "ewogICAgInZlcnNpb24iOiAiMS4wLjEiLAogICAgIm9iamVjdFR5cGVzIjogWwogICAgICAgIHsKICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzIiwKICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiLAogICAgICAgICAgICAic3ViT2JqZWN0VHlwZXMiOiBbCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLk9uZUxha2UiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuQWRsc0dlbjIiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuRGF0YXZlcnNlIiwKICAgICAgICAgICAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCIKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLkFtYXpvblMzIiwKICAgICAgICAgICAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCIKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLlMzQ29tcGF0aWJsZSIsCiAgICAgICAgICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiCiAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICJuYW1lIjogIlNob3J0Y3V0cy5Hb29nbGVDbG91ZFN0b3JhZ2UiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuQXp1cmVCbG9iU3RvcmFnZSIsCiAgICAgICAgICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiCiAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICJuYW1lIjogIlNob3J0Y3V0cy5PbmVEcml2ZVNoYXJlUG9pbnQiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfQogICAgICAgICAgICBdCiAgICAgICAgfSwKICAgICAgICB7CiAgICAgICAgICAgICJuYW1lIjogIkRhdGFBY2Nlc3NSb2xlcyIsCiAgICAgICAgICAgICJzdGF0ZSI6ICJEaXNhYmxlZCIKICAgICAgICB9CiAgICBdCn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTGFrZWhvdXNlIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", - "payloadType": "InlineBase64"}]}}' + body: '{"definition": {"parts": [{"path": "alm.settings.json", "payload": "ewogICAgInZlcnNpb24iOiAiMS4wLjEiLAogICAgIm9iamVjdFR5cGVzIjogWwogICAgICAgIHsKICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzIiwKICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiLAogICAgICAgICAgICAic3ViT2JqZWN0VHlwZXMiOiBbCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLk9uZUxha2UiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuQWRsc0dlbjIiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuRGF0YXZlcnNlIiwKICAgICAgICAgICAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCIKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLkFtYXpvblMzIiwKICAgICAgICAgICAgICAgICAgICAic3RhdGUiOiAiRW5hYmxlZCIKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgIm5hbWUiOiAiU2hvcnRjdXRzLlMzQ29tcGF0aWJsZSIsCiAgICAgICAgICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiCiAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICJuYW1lIjogIlNob3J0Y3V0cy5Hb29nbGVDbG91ZFN0b3JhZ2UiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAibmFtZSI6ICJTaG9ydGN1dHMuQXp1cmVCbG9iU3RvcmFnZSIsCiAgICAgICAgICAgICAgICAgICAgInN0YXRlIjogIkVuYWJsZWQiCiAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICJuYW1lIjogIlNob3J0Y3V0cy5PbmVEcml2ZVNoYXJlUG9pbnQiLAogICAgICAgICAgICAgICAgICAgICJzdGF0ZSI6ICJFbmFibGVkIgogICAgICAgICAgICAgICAgfQogICAgICAgICAgICBdCiAgICAgICAgfSwKICAgICAgICB7CiAgICAgICAgICAgICJuYW1lIjogIkRhdGFBY2Nlc3NSb2xlcyIsCiAgICAgICAgICAgICJzdGF0ZSI6ICJEaXNhYmxlZCIKICAgICAgICB9CiAgICBdCn0=", + "payloadType": "InlineBase64"}, {"path": "shortcuts.metadata.json", "payload": + "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTGFrZWhvdXNlIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": "lakehouse.metadata.json", "payload": + "e30=", "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -522,13 +571,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2599' + - '2543' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/acde9d2c-e006-4d00-8448-7679e076ca87/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1a3b6312-9849-48ee-a55a-5a305de5e44c/updateDefinition response: body: string: 'null' @@ -544,13 +593,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:10 GMT + - Tue, 02 Jun 2026 13:04:17 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2bc78225-08f0-4cb2-9d1a-55c18996c993 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b5e5203b-2eb8-4f6a-8991-f861c6b93bf1 Pragma: - no-cache RequestId: - - 16eb971d-35e5-495b-841d-13a321108d9d + - 075aec54-eedd-4e45-ac95-4da8f607cd10 Retry-After: - '20' Strict-Transport-Security: @@ -564,7 +613,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 2bc78225-08f0-4cb2-9d1a-55c18996c993 + - b5e5203b-2eb8-4f6a-8991-f861c6b93bf1 status: code: 202 message: Accepted @@ -580,13 +629,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2bc78225-08f0-4cb2-9d1a-55c18996c993 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b5e5203b-2eb8-4f6a-8991-f861c6b93bf1 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:25:10.8998867", - "lastUpdatedTimeUtc": "2026-04-14T12:25:13.2168389", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:04:18.3254109", + "lastUpdatedTimeUtc": "2026-06-02T13:04:27.1809824", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -596,17 +645,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:30 GMT + - Tue, 02 Jun 2026 13:04:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2bc78225-08f0-4cb2-9d1a-55c18996c993/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b5e5203b-2eb8-4f6a-8991-f861c6b93bf1/result Pragma: - no-cache RequestId: - - 5cad0a77-d04f-4393-9b2d-9993a7aa718f + - ad6b68f1-2f9f-4c55-8b1b-6c020131fc14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -614,7 +663,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 2bc78225-08f0-4cb2-9d1a-55c18996c993 + - b5e5203b-2eb8-4f6a-8991-f861c6b93bf1 status: code: 200 message: OK @@ -630,14 +679,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2bc78225-08f0-4cb2-9d1a-55c18996c993/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b5e5203b-2eb8-4f6a-8991-f861c6b93bf1/result response: body: - string: '{"id": "acde9d2c-e006-4d00-8448-7679e076ca87", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "1a3b6312-9849-48ee-a55a-5a305de5e44c", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -648,11 +696,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:25:31 GMT + - Tue, 02 Jun 2026 13:04:39 GMT Pragma: - no-cache RequestId: - - 57af616d-60af-4df7-85c0-af73c8afda29 + - ef3e9ee5-5dc5-4f21-84a2-6d888fdf7ad8 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -676,14 +724,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -692,15 +741,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:32 GMT + - Tue, 02 Jun 2026 13:04:40 GMT Pragma: - no-cache RequestId: - - 027403e5-ee11-4700-9cf5-f165d26a0472 + - 97ba79cd-823b-4338-9ff2-8606b2dbd17c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -726,15 +775,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "71cde45d-85d0-4364-98f3-d073eaca876e", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "acde9d2c-e006-4d00-8448-7679e076ca87", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "37861b2d-8513-4d88-84f3-76386601c3c2", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "ecfc7a41-3719-4312-8a47-36c8ee11f2ff", "type": "SQLEndpoint", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "f3f72459-27a4-401a-941a-401c930330f4", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "1230ce1e-4b16-44c8-90e4-1756d7cc9633", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "532e8990-80e8-4962-a956-f0c9f8163d75", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "8a179ed3-e30d-4e97-851b-448e97f0b4f3", "type": "Lakehouse", "displayName": + "fabcli000001_autodtdm", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "4ae335bf-1be6-4943-855f-bda64a377b37", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001_autoOnDemand", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}, {"id": "1a3b6312-9849-48ee-a55a-5a305de5e44c", + "type": "Lakehouse", "displayName": "fabcli000001", "description": "", "workspaceId": + "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -743,15 +805,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '227' + - '434' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:25:34 GMT + - Tue, 02 Jun 2026 13:04:41 GMT Pragma: - no-cache RequestId: - - 527a1610-d7e7-44d4-8b27-cc088ca37cda + - a2cd3621-2264-4d6b-8581-ee762246e44c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -779,9 +841,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/acde9d2c-e006-4d00-8448-7679e076ca87 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/1a3b6312-9849-48ee-a55a-5a305de5e44c response: body: string: '' @@ -797,11 +859,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:25:34 GMT + - Tue, 02 Jun 2026 13:04:42 GMT Pragma: - no-cache RequestId: - - 45b07f7b-e487-480a-b2a4-0588d2ecfbec + - a18b4519-74a1-4733-875f-13a2bb1d6868 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[MirroredDatabase].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[MirroredDatabase].yaml index b2a69da9..3a8856fa 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[MirroredDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[MirroredDatabase].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:40 GMT + - Tue, 02 Jun 2026 12:55:37 GMT Pragma: - no-cache RequestId: - - bce64f59-515e-4dcb-a686-88d4c3a9e000 + - a6cb010a-7a0a-4252-b98a-66cc734a6922 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:40 GMT + - Tue, 02 Jun 2026 12:55:38 GMT Pragma: - no-cache RequestId: - - f250d131-0812-4c84-a1b6-2f9e5f0606af + - d4d801d0-e6b3-4b6e-b004-0e642a2c06fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:41 GMT + - Tue, 02 Jun 2026 12:55:39 GMT Pragma: - no-cache RequestId: - - 7fed8122-541d-4c0b-9885-bfec9cedcbd7 + - f20e810f-c4c7-49fb-b598-eeb4e5665255 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +147,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "MirroredDatabase", "folderId": null, "definition": {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000001", "type": "MirroredDatabase", "folderId": + null, "definition": {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -156,18 +159,16 @@ interactions: - keep-alive Content-Length: - '570' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/mirroredDatabases response: body: - string: '{"id": "d7a2dba3-9d0e-48a8-be5e-097956e84efa", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "a115c3a5-992b-4d92-a5ca-32ed6d7254c6", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:19:44 GMT + - Tue, 02 Jun 2026 12:55:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4db0f941-5302-490e-a3aa-66b1b6553118 + - 4cf77418-0b07-45cd-8b07-3f45176630b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +213,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:44 GMT + - Tue, 02 Jun 2026 12:56:42 GMT Pragma: - no-cache RequestId: - - a82676d2-4946-4e75-abff-6e551658e1c5 + - c458a678-eae8-41eb-95a1-93ff1cb46b72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,16 +264,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "2e9a659f-9ad5-4235-abdc-1b59f7c8915a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d7a2dba3-9d0e-48a8-be5e-097956e84efa", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "39798624-d1a0-420e-8e75-e9e012e9b840", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "a115c3a5-992b-4d92-a5ca-32ed6d7254c6", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -280,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:45 GMT + - Tue, 02 Jun 2026 12:56:43 GMT Pragma: - no-cache RequestId: - - 404e18c5-fa28-4650-8f1e-5b8bb3171aad + - 53b5341c-51de-46eb-84ab-534654eca9db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,14 +315,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/d7a2dba3-9d0e-48a8-be5e-097956e84efa + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/a115c3a5-992b-4d92-a5ca-32ed6d7254c6 response: body: - string: '{"id": "d7a2dba3-9d0e-48a8-be5e-097956e84efa", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "a115c3a5-992b-4d92-a5ca-32ed6d7254c6", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -330,17 +330,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:45 GMT + - Tue, 02 Jun 2026 12:56:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a2b93c44-9b1f-4d67-aca7-890ed8ea6236 + - 40025168-c370-4624-8a2b-0f07240db5ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -368,13 +368,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/d7a2dba3-9d0e-48a8-be5e-097956e84efa/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/a115c3a5-992b-4d92-a5ca-32ed6d7254c6/getDefinition response: body: string: '{"definition": {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -384,15 +384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '561' + - '535' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:46 GMT + - Tue, 02 Jun 2026 12:56:44 GMT Pragma: - no-cache RequestId: - - 623ba8fb-e83d-4732-aa71-2f51e01b2777 + - 117de7a3-99e3-458c-b9f6-77383f570dac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,14 +418,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -434,15 +435,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:48 GMT + - Tue, 02 Jun 2026 12:56:45 GMT Pragma: - no-cache RequestId: - - b3c6938d-7123-4f87-9623-9c4deb0a0625 + - 16a76da8-2bfa-41d4-93e3-98738951e1d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -468,16 +469,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "2e9a659f-9ad5-4235-abdc-1b59f7c8915a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d7a2dba3-9d0e-48a8-be5e-097956e84efa", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "39798624-d1a0-420e-8e75-e9e012e9b840", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "a115c3a5-992b-4d92-a5ca-32ed6d7254c6", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -486,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:48 GMT + - Tue, 02 Jun 2026 12:56:46 GMT Pragma: - no-cache RequestId: - - d6fb3ee4-2637-4964-b6d4-5fb630b5d70e + - d4e74175-bf01-49cd-a3f6-789493e0d1f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -509,8 +509,8 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTWlycm9yZWREYXRhYmFzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", - "payloadType": "InlineBase64"}, {"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", + body: '{"definition": {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTWlycm9yZWREYXRhYmFzZSIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -520,13 +520,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1062' + - '1006' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/d7a2dba3-9d0e-48a8-be5e-097956e84efa/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/a115c3a5-992b-4d92-a5ca-32ed6d7254c6/updateDefinition response: body: string: '' @@ -542,11 +542,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:20:50 GMT + - Tue, 02 Jun 2026 12:56:48 GMT Pragma: - no-cache RequestId: - - 592508ad-3316-4cb9-ad4b-75bfb7332f90 + - c58a1c15-7182-4740-8e66-9b48303efcd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -572,14 +572,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -588,15 +589,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:51 GMT + - Tue, 02 Jun 2026 12:56:49 GMT Pragma: - no-cache RequestId: - - 07e84242-55e3-4f7f-b64e-c8b3e1778e06 + - 83ceb576-6fd6-4b3c-ae46-54e52c8b1b43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -622,16 +623,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "2e9a659f-9ad5-4235-abdc-1b59f7c8915a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}, - {"id": "d7a2dba3-9d0e-48a8-be5e-097956e84efa", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "39798624-d1a0-420e-8e75-e9e012e9b840", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}, + {"id": "a115c3a5-992b-4d92-a5ca-32ed6d7254c6", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -640,15 +640,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:52 GMT + - Tue, 02 Jun 2026 12:56:50 GMT Pragma: - no-cache RequestId: - - b1730ca3-5052-4333-94ea-7b1bb8bc734a + - 59e568f9-2b28-49dd-b461-e95fa3026c43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,9 +676,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/d7a2dba3-9d0e-48a8-be5e-097956e84efa + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/a115c3a5-992b-4d92-a5ca-32ed6d7254c6 response: body: string: '' @@ -694,11 +694,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:20:53 GMT + - Tue, 02 Jun 2026 12:56:51 GMT Pragma: - no-cache RequestId: - - eab6ecb0-d9f0-4ebc-b465-1d33b71b3add + - 55a216de-459b-40c5-abb0-2f6c61190f19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Notebook].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Notebook].yaml index 26cd695b..2c9c687f 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Notebook].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Notebook].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:53 GMT + - Tue, 02 Jun 2026 12:56:52 GMT Pragma: - no-cache RequestId: - - b3f9ecba-07cc-4ab3-aa36-d301e2a84ebb + - e2ab4481-7343-47b6-ad3d-4bd27eab571e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:54 GMT + - Tue, 02 Jun 2026 12:56:52 GMT Pragma: - no-cache RequestId: - - cde2e5f6-c380-48cd-aaa1-6ee30481ef57 + - d2ca648d-911c-4e6e-8fd2-db2a6254e53d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:55 GMT + - Tue, 02 Jun 2026 12:56:54 GMT Pragma: - no-cache RequestId: - - 3986edd3-cacc-4652-ae6a-ee9080393431 + - e2167aef-d1d4-490e-a344-066d43f0ae47 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +147,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000001", "type": "Notebook", "folderId": null, "definition": + {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -156,13 +159,12 @@ interactions: - keep-alive Content-Length: - '731' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/notebooks response: body: string: 'null' @@ -178,15 +180,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:20:57 GMT + - Tue, 02 Jun 2026 12:56:55 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/785403e3-34f5-4198-8c6b-7b401e75416b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3ca2df8f-6daf-48a8-9f97-107c89331ada Pragma: - no-cache RequestId: - - 0641af69-da8b-4c31-9a5f-9b13dff25feb + - b6c2d7e5-fbe0-44cf-892c-e4d8f24b6a75 Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +202,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 785403e3-34f5-4198-8c6b-7b401e75416b + - 3ca2df8f-6daf-48a8-9f97-107c89331ada status: code: 202 message: Accepted @@ -216,13 +218,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/785403e3-34f5-4198-8c6b-7b401e75416b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3ca2df8f-6daf-48a8-9f97-107c89331ada response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:20:57.3292552", - "lastUpdatedTimeUtc": "2026-04-14T12:20:58.624863", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:56:55.6196875", + "lastUpdatedTimeUtc": "2026-06-02T12:56:57.0463061", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -236,13 +238,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:18 GMT + - Tue, 02 Jun 2026 12:57:16 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/785403e3-34f5-4198-8c6b-7b401e75416b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3ca2df8f-6daf-48a8-9f97-107c89331ada/result Pragma: - no-cache RequestId: - - 95d393bd-e646-4ade-b1a7-6fb327541f2c + - 569769e8-7b36-47fc-a545-db5c081c69dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +252,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 785403e3-34f5-4198-8c6b-7b401e75416b + - 3ca2df8f-6daf-48a8-9f97-107c89331ada status: code: 200 message: OK @@ -266,14 +268,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/785403e3-34f5-4198-8c6b-7b401e75416b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3ca2df8f-6daf-48a8-9f97-107c89331ada/result response: body: - string: '{"id": "d039707a-0105-4d87-a455-d49284e15100", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "5a4966d0-412c-49ec-a8fe-4f59ecbe1c75", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:21:19 GMT + - Tue, 02 Jun 2026 12:57:16 GMT Pragma: - no-cache RequestId: - - 7aaabe46-2d51-43f6-a595-ffce6a356bc7 + - 1721b5ee-45dc-4f5b-a18a-6a846af3dfb9 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +313,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:20 GMT + - Tue, 02 Jun 2026 12:57:18 GMT Pragma: - no-cache RequestId: - - 7efabf47-1196-4087-9731-b6e321427841 + - fcbf13b5-7823-4a3f-abcb-b9b1e4c4b292 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +364,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "d039707a-0105-4d87-a455-d49284e15100", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "5a4966d0-412c-49ec-a8fe-4f59ecbe1c75", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +379,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:20 GMT + - Tue, 02 Jun 2026 12:57:18 GMT Pragma: - no-cache RequestId: - - 678eb1ee-f47e-4c01-aa59-4574d618df7b + - 7321be73-ff97-40fb-b4b6-8e44b7ed9660 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +413,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/d039707a-0105-4d87-a455-d49284e15100 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5a4966d0-412c-49ec-a8fe-4f59ecbe1c75 response: body: - string: '{"id": "d039707a-0105-4d87-a455-d49284e15100", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "5a4966d0-412c-49ec-a8fe-4f59ecbe1c75", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +428,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:22 GMT + - Tue, 02 Jun 2026 12:57:19 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e029a199-af33-4a43-be2c-d4578cd99c4b + - bf25c3b3-2da4-4d17-b48b-8f950e31306f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,9 +466,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/d039707a-0105-4d87-a455-d49284e15100/getDefinition?format=ipynb + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5a4966d0-412c-49ec-a8fe-4f59ecbe1c75/getDefinition?format=ipynb response: body: string: 'null' @@ -484,13 +484,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:22 GMT + - Tue, 02 Jun 2026 12:57:20 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1585910-54fc-41f9-84de-990f48be1f16 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d511168a-a3c7-46e8-b531-9ae67bccd8c8 Pragma: - no-cache RequestId: - - afff8900-6220-41a3-bdfd-f58fe17ea2e3 + - 06eb999d-76c0-48f6-92db-8b1b87e177f1 Retry-After: - '20' Strict-Transport-Security: @@ -504,7 +504,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d1585910-54fc-41f9-84de-990f48be1f16 + - d511168a-a3c7-46e8-b531-9ae67bccd8c8 status: code: 202 message: Accepted @@ -520,13 +520,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1585910-54fc-41f9-84de-990f48be1f16 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d511168a-a3c7-46e8-b531-9ae67bccd8c8 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:21:23.0448468", - "lastUpdatedTimeUtc": "2026-04-14T12:21:23.8632963", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:57:21.3729698", + "lastUpdatedTimeUtc": "2026-06-02T12:57:22.1871912", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -536,17 +536,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:43 GMT + - Tue, 02 Jun 2026 12:57:41 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1585910-54fc-41f9-84de-990f48be1f16/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d511168a-a3c7-46e8-b531-9ae67bccd8c8/result Pragma: - no-cache RequestId: - - 626eadc9-62c2-4b7d-9a06-3dc6cff7a852 + - 8ba06b94-f421-4050-b252-f74479fe350d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -554,7 +554,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d1585910-54fc-41f9-84de-990f48be1f16 + - d511168a-a3c7-46e8-b531-9ae67bccd8c8 status: code: 200 message: OK @@ -570,14 +570,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1585910-54fc-41f9-84de-990f48be1f16/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d511168a-a3c7-46e8-b531-9ae67bccd8c8/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.ipynb", "payload": "eyJuYmZvcm1hdCI6NCwibmJmb3JtYXRfbWlub3IiOjUsIm1ldGFkYXRhIjp7Imxhbmd1YWdlX2luZm8iOnsibmFtZSI6InB5dGhvbiJ9LCJrZXJuZWxfaW5mbyI6eyJuYW1lIjoic3luYXBzZV9weXNwYXJrIiwianVweXRlcl9rZXJuZWxfbmFtZSI6bnVsbH0sImEzNjVDb21wdXRlT3B0aW9ucyI6bnVsbCwic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOjAsImRlcGVuZGVuY2llcyI6eyJsYWtlaG91c2UiOm51bGx9fSwiY2VsbHMiOlt7ImNlbGxfdHlwZSI6ImNvZGUiLCJtZXRhZGF0YSI6eyJtaWNyb3NvZnQiOnsibGFuZ3VhZ2UiOiJweXRob24iLCJsYW5ndWFnZV9ncm91cCI6InN5bmFwc2VfcHlzcGFyayJ9fSwic291cmNlIjpbIiMgV2VsY29tZSB0byB5b3VyIG5ldyBub3RlYm9va1xuIiwiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIl0sIm91dHB1dHMiOltdfV19", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -589,11 +589,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:21:43 GMT + - Tue, 02 Jun 2026 12:57:42 GMT Pragma: - no-cache RequestId: - - ee32dd40-04e4-4618-9314-08e855a5b749 + - b9c9911a-15de-4349-bca8-e822569d8729 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -617,14 +617,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -633,15 +634,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:45 GMT + - Tue, 02 Jun 2026 12:57:43 GMT Pragma: - no-cache RequestId: - - 2b2b5628-a26e-4b46-a476-a76b58057cff + - 9302070b-4e84-4842-aecc-d31abd70752a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -667,14 +668,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "d039707a-0105-4d87-a455-d49284e15100", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "5a4966d0-412c-49ec-a8fe-4f59ecbe1c75", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -683,15 +683,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:46 GMT + - Tue, 02 Jun 2026 12:57:44 GMT Pragma: - no-cache RequestId: - - 0bce6b34-b2cd-4135-808a-e4d67bcd4d62 + - 3f241737-c9c3-4d7a-bc87-aa88392382eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -708,7 +708,7 @@ interactions: - request: body: '{"definition": {"parts": [{"path": "notebook-content.ipynb", "payload": "ewogICAgIm5iZm9ybWF0IjogNCwKICAgICJuYmZvcm1hdF9taW5vciI6IDUsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgImxhbmd1YWdlX2luZm8iOiB7CiAgICAgICAgICAgICJuYW1lIjogInB5dGhvbiIKICAgICAgICB9LAogICAgICAgICJrZXJuZWxfaW5mbyI6IHsKICAgICAgICAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIiwKICAgICAgICAgICAgImp1cHl0ZXJfa2VybmVsX25hbWUiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAiYTM2NUNvbXB1dGVPcHRpb25zIjogbnVsbCwKICAgICAgICAic2Vzc2lvbktlZXBBbGl2ZVRpbWVvdXQiOiAwLAogICAgICAgICJkZXBlbmRlbmNpZXMiOiB7CiAgICAgICAgICAgICJsYWtlaG91c2UiOiBudWxsCiAgICAgICAgfQogICAgfSwKICAgICJjZWxscyI6IFsKICAgICAgICB7CiAgICAgICAgICAgICJjZWxsX3R5cGUiOiAiY29kZSIsCiAgICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgICAgICJtaWNyb3NvZnQiOiB7CiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlIjogInB5dGhvbiIsCiAgICAgICAgICAgICAgICAgICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInNvdXJjZSI6IFsKICAgICAgICAgICAgICAgICIjIFdlbGNvbWUgdG8geW91ciBuZXcgbm90ZWJvb2tcbiIsCiAgICAgICAgICAgICAgICAiIyBUeXBlIGhlcmUgaW4gdGhlIGNlbGwgZWRpdG9yIHRvIGFkZCBjb2RlIVxuIgogICAgICAgICAgICBdLAogICAgICAgICAgICAib3V0cHV0cyI6IFtdCiAgICAgICAgfQogICAgXQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTm90ZWJvb2siLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiTm90ZWJvb2siLAogICAgICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", "payloadType": "InlineBase64"}], "format": "ipynb"}}' headers: Accept: @@ -718,13 +718,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1805' + - '1753' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/d039707a-0105-4d87-a455-d49284e15100/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5a4966d0-412c-49ec-a8fe-4f59ecbe1c75/updateDefinition response: body: string: 'null' @@ -740,13 +740,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:21:47 GMT + - Tue, 02 Jun 2026 12:57:45 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/092c8c78-4581-4f8c-9171-0dd89d154d6e + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1f053a0f-36e1-4e7a-99f3-ecdeb1217226 Pragma: - no-cache RequestId: - - 971bda58-947b-4f38-ad33-fdd4fabfdbe2 + - 1dd60c79-46bd-421c-a14e-567b42869971 Retry-After: - '20' Strict-Transport-Security: @@ -760,7 +760,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 092c8c78-4581-4f8c-9171-0dd89d154d6e + - 1f053a0f-36e1-4e7a-99f3-ecdeb1217226 status: code: 202 message: Accepted @@ -776,13 +776,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/092c8c78-4581-4f8c-9171-0dd89d154d6e + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1f053a0f-36e1-4e7a-99f3-ecdeb1217226 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:21:47.7993665", - "lastUpdatedTimeUtc": "2026-04-14T12:21:48.1216923", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T12:57:46.6937257", + "lastUpdatedTimeUtc": "2026-06-02T12:57:49.0344624", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -792,17 +792,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:08 GMT + - Tue, 02 Jun 2026 12:58:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/092c8c78-4581-4f8c-9171-0dd89d154d6e/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1f053a0f-36e1-4e7a-99f3-ecdeb1217226/result Pragma: - no-cache RequestId: - - 73b35606-927b-4432-86ee-71f8688b9796 + - e030d69b-e79d-46ec-9cf4-257a77f9dbfb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -810,7 +810,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 092c8c78-4581-4f8c-9171-0dd89d154d6e + - 1f053a0f-36e1-4e7a-99f3-ecdeb1217226 status: code: 200 message: OK @@ -826,14 +826,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/092c8c78-4581-4f8c-9171-0dd89d154d6e/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1f053a0f-36e1-4e7a-99f3-ecdeb1217226/result response: body: - string: '{"id": "d039707a-0105-4d87-a455-d49284e15100", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "5a4966d0-412c-49ec-a8fe-4f59ecbe1c75", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -844,11 +843,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:22:08 GMT + - Tue, 02 Jun 2026 12:58:08 GMT Pragma: - no-cache RequestId: - - 1af1b8b7-bc22-4390-a798-c412b7e2ad1b + - 910a8226-0265-4f2e-ae05-72f916030e98 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -872,14 +871,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -888,15 +888,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:09 GMT + - Tue, 02 Jun 2026 12:58:08 GMT Pragma: - no-cache RequestId: - - 5c072b2d-9b26-4155-86f4-6eef6938b7d6 + - 189c213d-e917-48ff-bd2b-4397df598f30 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,14 +922,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "d039707a-0105-4d87-a455-d49284e15100", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "5a4966d0-412c-49ec-a8fe-4f59ecbe1c75", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -938,15 +937,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:10 GMT + - Tue, 02 Jun 2026 12:58:09 GMT Pragma: - no-cache RequestId: - - b1e29515-45db-4b40-99e1-333e2aee36a3 + - 85eaf94d-c5bf-4bd1-84a6-a6edf76c2877 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,9 +973,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/d039707a-0105-4d87-a455-d49284e15100 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/5a4966d0-412c-49ec-a8fe-4f59ecbe1c75 response: body: string: '' @@ -992,11 +991,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:22:10 GMT + - Tue, 02 Jun 2026 12:58:10 GMT Pragma: - no-cache RequestId: - - be56f722-949e-419b-9d27-844f300dcf87 + - eff5d97d-70d6-44cb-8c3b-5069aeb77800 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Reflex].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Reflex].yaml index e1350dd7..8ef7eec9 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Reflex].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[Reflex].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:12 GMT + - Tue, 02 Jun 2026 12:58:11 GMT Pragma: - no-cache RequestId: - - 787f9a96-99d4-4bee-ba43-be1e9416abb0 + - 555f7049-bf81-49f0-acce-590dba97ebe5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:13 GMT + - Tue, 02 Jun 2026 12:58:12 GMT Pragma: - no-cache RequestId: - - 540fc3bc-15de-49fe-a73c-64a4308c7d1c + - b9d0dd44-4b46-45a3-b11d-00687502141c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:13 GMT + - Tue, 02 Jun 2026 12:58:13 GMT Pragma: - no-cache RequestId: - - b861766a-a493-4089-b646-20ffdc4e1f55 + - b5c3021a-f7d9-49e9-a2a3-00c55df83dc0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,17 +157,16 @@ interactions: - keep-alive Content-Length: - '71' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/reflexes + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/reflexes response: body: - string: '{"id": "9fd8fee4-3897-468a-ab9c-e0a149293253", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "6b313a39-8a68-48eb-8892-633df17c5f6a", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -175,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:16 GMT + - Tue, 02 Jun 2026 12:58:19 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 88b8b8d0-2f33-41df-b041-8d57807fe00f + - 0c03ec7a-6a49-4558-a858-165168d20df5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -211,14 +211,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -227,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:17 GMT + - Tue, 02 Jun 2026 12:58:20 GMT Pragma: - no-cache RequestId: - - f52b782a-ea83-4971-b9c5-cee039d39bff + - 828a7f52-ae77-4e1f-afe5-4902a4c75b0a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -261,14 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "9fd8fee4-3897-468a-ab9c-e0a149293253", "type": "Reflex", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "6b313a39-8a68-48eb-8892-633df17c5f6a", "type": "Reflex", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -277,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:17 GMT + - Tue, 02 Jun 2026 12:58:21 GMT Pragma: - no-cache RequestId: - - 7b23691e-de04-4f65-9330-7ec1d4c21012 + - 689c0b48-3d0a-43e3-bd38-a8a7e021adc3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -311,13 +311,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/9fd8fee4-3897-468a-ab9c-e0a149293253 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/6b313a39-8a68-48eb-8892-633df17c5f6a response: body: - string: '{"id": "9fd8fee4-3897-468a-ab9c-e0a149293253", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "6b313a39-8a68-48eb-8892-633df17c5f6a", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -326,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:18 GMT + - Tue, 02 Jun 2026 12:58:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 29dd0fc6-7908-4743-aa1c-30c5c8214040 + - 38b8c773-3bbd-4e74-8f97-29871d560d9c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,13 +364,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/9fd8fee4-3897-468a-ab9c-e0a149293253/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/6b313a39-8a68-48eb-8892-633df17c5f6a/getDefinition response: body: string: '{"definition": {"parts": [{"path": "ReflexEntities.json", "payload": - "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -380,15 +380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '394' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:20 GMT + - Tue, 02 Jun 2026 12:58:27 GMT Pragma: - no-cache RequestId: - - f191af15-15ca-49d6-8889-b272d8faf6f1 + - 9eac102e-5954-4b52-bb3b-7b8d51e09599 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,14 +414,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -430,15 +431,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:21 GMT + - Tue, 02 Jun 2026 12:58:27 GMT Pragma: - no-cache RequestId: - - f1316b3c-181b-479d-8924-94e7b4e6c128 + - a799c830-5c98-48e1-b14d-91a676f1609f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -464,14 +465,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "9fd8fee4-3897-468a-ab9c-e0a149293253", "type": "Reflex", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "6b313a39-8a68-48eb-8892-633df17c5f6a", "type": "Reflex", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -480,15 +480,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:22 GMT + - Tue, 02 Jun 2026 12:58:29 GMT Pragma: - no-cache RequestId: - - f1864a1b-8872-4eda-8fc7-4f5afdbca7a9 + - 6fb33218-be0d-4fbe-836c-1132eb7b2354 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -503,8 +503,8 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": "ReflexEntities.json", "payload": "W10=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiUmVmbGV4IiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiUmVmbGV4IiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": "ReflexEntities.json", "payload": "W10=", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -514,13 +514,13 @@ interactions: Connection: - keep-alive Content-Length: - - '671' + - '615' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/9fd8fee4-3897-468a-ab9c-e0a149293253/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/6b313a39-8a68-48eb-8892-633df17c5f6a/updateDefinition response: body: string: '' @@ -536,11 +536,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:22:24 GMT + - Tue, 02 Jun 2026 12:58:34 GMT Pragma: - no-cache RequestId: - - a703adc5-13cc-41c6-bc04-60e5ac8d1f8d + - 8142d46d-c59c-427d-8466-c35f151096fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -566,14 +566,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -582,15 +583,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:25 GMT + - Tue, 02 Jun 2026 12:58:35 GMT Pragma: - no-cache RequestId: - - 9edd5e17-e41e-48b1-a583-f8168948d862 + - a28a4366-6f86-4107-ab9c-1baa718f5f43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -616,14 +617,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "9fd8fee4-3897-468a-ab9c-e0a149293253", "type": "Reflex", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "6b313a39-8a68-48eb-8892-633df17c5f6a", "type": "Reflex", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -632,15 +632,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:25 GMT + - Tue, 02 Jun 2026 12:58:35 GMT Pragma: - no-cache RequestId: - - edb206fb-4748-47bf-a45b-d67216671e19 + - 8673fce4-ef17-403a-81ee-d234c3f0dcd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,9 +668,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/9fd8fee4-3897-468a-ab9c-e0a149293253 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/6b313a39-8a68-48eb-8892-633df17c5f6a response: body: string: '' @@ -686,11 +686,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:22:26 GMT + - Tue, 02 Jun 2026 12:58:36 GMT Pragma: - no-cache RequestId: - - 08147f19-d0a6-47e7-b0a5-c87488bb203d + - 0a7ef050-dc1b-4928-94b1-3f66bff28c77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[SparkJobDefinition].yaml index f3bfd097..721ed27b 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[SparkJobDefinition].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[SparkJobDefinition].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:27 GMT + - Tue, 02 Jun 2026 12:58:38 GMT Pragma: - no-cache RequestId: - - aa88230b-4c77-4aa0-b6bf-76b4b1c7fc2f + - 1c16b23c-4bb3-40eb-845e-4a9a8c933d8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:28 GMT + - Tue, 02 Jun 2026 12:58:39 GMT Pragma: - no-cache RequestId: - - 442c4e0a-14d7-4c6f-940c-41035bf5e64d + - 58788dae-9f9e-402e-bf20-77bd3c7f4630 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:29 GMT + - Tue, 02 Jun 2026 12:58:40 GMT Pragma: - no-cache RequestId: - - 0c7a2eae-6c1a-44cd-ba40-a29498b78c46 + - a8d045d2-8639-40d4-8b44-f7d9db24ea4e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +147,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "SparkJobDefinition", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "SparkJobDefinition", "folderId": + null}' headers: Accept: - '*/*' @@ -156,18 +158,16 @@ interactions: - keep-alive Content-Length: - '83' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/sparkJobDefinitions response: body: - string: '{"id": "ce48694a-5283-4ac3-ba68-37a10ac1e18d", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "cfdd8276-2276-41a7-8e22-7f3d8c8a89ba", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +176,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '173' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:30 GMT + - Tue, 02 Jun 2026 12:58:42 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 656458fb-7cf8-4323-89af-de9a3ae66795 + - 9ddfc42e-3ed8-43f0-8133-14d41a7c46fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +212,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +229,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:31 GMT + - Tue, 02 Jun 2026 12:58:42 GMT Pragma: - no-cache RequestId: - - 09428a51-0089-471c-8259-771ac19e7c44 + - 2f148e74-efe8-46cd-a7a1-fc9729015b7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +263,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "ce48694a-5283-4ac3-ba68-37a10ac1e18d", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "cfdd8276-2276-41a7-8e22-7f3d8c8a89ba", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '185' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:32 GMT + - Tue, 02 Jun 2026 12:58:43 GMT Pragma: - no-cache RequestId: - - 0623d1cb-5f48-4a3d-ade9-b4cf3dec52ac + - a50d3acd-14c0-4c8f-813d-6703408c09f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +312,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/ce48694a-5283-4ac3-ba68-37a10ac1e18d + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/cfdd8276-2276-41a7-8e22-7f3d8c8a89ba response: body: - string: '{"id": "ce48694a-5283-4ac3-ba68-37a10ac1e18d", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "cfdd8276-2276-41a7-8e22-7f3d8c8a89ba", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +327,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '173' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:33 GMT + - Tue, 02 Jun 2026 12:58:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c2621c51-4b66-477f-b790-684424f369a0 + - 9dd815af-f011-4708-b5d1-395d6ba41a3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,14 +365,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/ce48694a-5283-4ac3-ba68-37a10ac1e18d/getDefinition?format=SparkJobDefinitionV1 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/cfdd8276-2276-41a7-8e22-7f3d8c8a89ba/getDefinition?format=SparkJobDefinitionV1 response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -383,15 +382,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '617' + - '585' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:33 GMT + - Tue, 02 Jun 2026 12:58:46 GMT Pragma: - no-cache RequestId: - - 07efcc21-4cc8-46ef-bcdd-29280e13821d + - 2c2bce00-9497-489d-aa67-2a0669403f2e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -417,14 +416,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -433,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:35 GMT + - Tue, 02 Jun 2026 12:58:47 GMT Pragma: - no-cache RequestId: - - eb21c1c5-6d0f-498d-85b5-ce50297aee84 + - c0e9615a-62b7-4c51-a32c-74d58fcf0243 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,14 +467,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "ce48694a-5283-4ac3-ba68-37a10ac1e18d", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "cfdd8276-2276-41a7-8e22-7f3d8c8a89ba", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -483,15 +482,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '185' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:35 GMT + - Tue, 02 Jun 2026 12:58:47 GMT Pragma: - no-cache RequestId: - - 080f98e3-4353-4b07-9269-31cb9e9728de + - 3ffa6cf1-0ac6-4128-9e78-81806029c1a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -506,7 +505,7 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgICB9LAogICAgImNvbmZpZyI6IHsKICAgICAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogICAgfQp9", + body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "SparkJobDefinitionV1.json", "payload": "ewogICAgImV4ZWN1dGFibGVGaWxlIjogbnVsbCwKICAgICJkZWZhdWx0TGFrZWhvdXNlQXJ0aWZhY3RJZCI6IG51bGwsCiAgICAibWFpbkNsYXNzIjogbnVsbCwKICAgICJhZGRpdGlvbmFsTGFrZWhvdXNlSWRzIjogW10sCiAgICAicmV0cnlQb2xpY3kiOiBudWxsLAogICAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwKICAgICJhZGRpdGlvbmFsTGlicmFyeVVyaXMiOiBudWxsLAogICAgImxhbmd1YWdlIjogbnVsbCwKICAgICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsCn0=", "payloadType": "InlineBase64"}], "format": "SparkJobDefinitionV1"}}' @@ -518,13 +517,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1095' + - '1039' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/ce48694a-5283-4ac3-ba68-37a10ac1e18d/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/cfdd8276-2276-41a7-8e22-7f3d8c8a89ba/updateDefinition response: body: string: '' @@ -540,11 +539,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:22:35 GMT + - Tue, 02 Jun 2026 12:58:49 GMT Pragma: - no-cache RequestId: - - 724e877f-46d8-4e86-a1f6-0b53ef348585 + - 22d03809-0765-4832-8c60-949105b16de3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -570,14 +569,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -586,15 +586,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:36 GMT + - Tue, 02 Jun 2026 12:58:50 GMT Pragma: - no-cache RequestId: - - 43a0479c-839d-4a32-b188-e62a0fb250da + - b6e71e0c-526d-495d-9c16-40b914118362 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,14 +620,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "ce48694a-5283-4ac3-ba68-37a10ac1e18d", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "cfdd8276-2276-41a7-8e22-7f3d8c8a89ba", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -636,15 +635,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '185' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:22:37 GMT + - Tue, 02 Jun 2026 12:58:50 GMT Pragma: - no-cache RequestId: - - d7818e0e-f330-4797-be78-1d3079ea36d7 + - 2aab5801-1e14-4149-a96b-a41108989058 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,9 +671,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/ce48694a-5283-4ac3-ba68-37a10ac1e18d + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/cfdd8276-2276-41a7-8e22-7f3d8c8a89ba response: body: string: '' @@ -690,11 +689,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:22:37 GMT + - Tue, 02 Jun 2026 12:58:51 GMT Pragma: - no-cache RequestId: - - 7d7d2217-6d75-43d6-83cc-ad72d2916c9e + - b5e4c19e-76ce-4cde-ada5-d4e6a9dce4f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[UserDataFunction].yaml index 9188c43e..92ffe9a1 100644 --- a/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[UserDataFunction].yaml +++ b/tests/test_commands/recordings/test_commands/test_import/test_import_update_existing_item_success[UserDataFunction].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:56 GMT + - Tue, 02 Jun 2026 13:00:14 GMT Pragma: - no-cache RequestId: - - a5f7ea9e-f9a9-4b4e-8113-b2247cd2b52d + - db82907f-2550-43de-89ac-e73d1928ed5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:57 GMT + - Tue, 02 Jun 2026 13:00:15 GMT Pragma: - no-cache RequestId: - - 4a681364-b82a-4b53-b57b-8990d537d414 + - acee6f88-3f94-4ced-ba40-f9f7c903cf26 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:23:57 GMT + - Tue, 02 Jun 2026 13:00:16 GMT Pragma: - no-cache RequestId: - - 1fedcd0e-3aba-426a-b28e-fe99ca79d19f + - 1d13c499-9787-460e-b3d5-300063018554 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +147,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "UserDataFunction", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "UserDataFunction", "folderId": + null}' headers: Accept: - '*/*' @@ -156,18 +158,16 @@ interactions: - keep-alive Content-Length: - '81' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/userdatafunctions + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/userdatafunctions response: body: - string: '{"id": "c70102e5-0640-4c9b-8518-1f7a723cead6", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "447f7714-ffda-4675-b5d0-e4d10f40b78a", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +176,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:01 GMT + - Tue, 02 Jun 2026 13:00:20 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b67c2eea-4ee4-4af7-b18f-816eeed0fb0d + - 4a34f90e-8080-476a-9c54-6a629ba5c567 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +212,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +229,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:02 GMT + - Tue, 02 Jun 2026 13:00:20 GMT Pragma: - no-cache RequestId: - - 52ed9f16-73bb-4c48-86a0-295aac566746 + - cd88fb85-b97d-4bf7-baf4-c141a2d7cfe6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +263,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "c70102e5-0640-4c9b-8518-1f7a723cead6", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "447f7714-ffda-4675-b5d0-e4d10f40b78a", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:03 GMT + - Tue, 02 Jun 2026 13:00:21 GMT Pragma: - no-cache RequestId: - - ea623b82-b157-4c5e-9bcc-dc05ba189a54 + - d843232e-a18c-4a5e-8994-d6e1fbb34684 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +312,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/c70102e5-0640-4c9b-8518-1f7a723cead6 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/447f7714-ffda-4675-b5d0-e4d10f40b78a response: body: - string: '{"id": "c70102e5-0640-4c9b-8518-1f7a723cead6", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "447f7714-ffda-4675-b5d0-e4d10f40b78a", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +327,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:04 GMT + - Tue, 02 Jun 2026 13:00:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a2d7d0c6-09cb-4386-b777-ae056617a9d2 + - e2691abc-fbbb-40f0-bc05-448e52b21cf8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,9 +365,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/c70102e5-0640-4c9b-8518-1f7a723cead6/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/447f7714-ffda-4675-b5d0-e4d10f40b78a/getDefinition response: body: string: 'null' @@ -384,13 +383,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:05 GMT + - Tue, 02 Jun 2026 13:00:23 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e8ad4b91-0f2b-43ee-b949-846156344138 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dc1e7b44-00d4-4ffe-9e2a-f54acfc37953 Pragma: - no-cache RequestId: - - 0272d104-5342-461b-b2c5-e3d4e002c64a + - ce71f918-d9c6-4ef8-837f-86391c52b4e7 Retry-After: - '20' Strict-Transport-Security: @@ -404,7 +403,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - e8ad4b91-0f2b-43ee-b949-846156344138 + - dc1e7b44-00d4-4ffe-9e2a-f54acfc37953 status: code: 202 message: Accepted @@ -420,13 +419,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e8ad4b91-0f2b-43ee-b949-846156344138 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dc1e7b44-00d4-4ffe-9e2a-f54acfc37953 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:24:05.4380335", - "lastUpdatedTimeUtc": "2026-04-14T12:24:05.6233661", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:00:23.9175491", + "lastUpdatedTimeUtc": "2026-06-02T13:00:24.1862395", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -436,17 +435,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:26 GMT + - Tue, 02 Jun 2026 13:00:44 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e8ad4b91-0f2b-43ee-b949-846156344138/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dc1e7b44-00d4-4ffe-9e2a-f54acfc37953/result Pragma: - no-cache RequestId: - - df4e8535-d342-42a3-ae6f-db5745a988cb + - c249f3a5-7350-40ef-b6c4-f2bbf2099239 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -454,7 +453,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - e8ad4b91-0f2b-43ee-b949-846156344138 + - dc1e7b44-00d4-4ffe-9e2a-f54acfc37953 status: code: 200 message: OK @@ -470,13 +469,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e8ad4b91-0f2b-43ee-b949-846156344138/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dc1e7b44-00d4-4ffe-9e2a-f54acfc37953/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -488,11 +487,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:24:26 GMT + - Tue, 02 Jun 2026 13:00:45 GMT Pragma: - no-cache RequestId: - - 6f96ae6c-cf72-45b7-873f-13dbd27d95b6 + - a42c69cf-f060-4034-acce-9c8bdb4a17c5 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -516,14 +515,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -532,15 +532,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:28 GMT + - Tue, 02 Jun 2026 13:00:45 GMT Pragma: - no-cache RequestId: - - bb79eb9d-3617-4b22-b79b-f1e42ae163a4 + - 26c1c2fc-daa1-4057-9757-016be62bebca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -566,14 +566,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "c70102e5-0640-4c9b-8518-1f7a723cead6", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "447f7714-ffda-4675-b5d0-e4d10f40b78a", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -582,15 +581,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:28 GMT + - Tue, 02 Jun 2026 13:00:46 GMT Pragma: - no-cache RequestId: - - a94e2360-7829-4c5a-b485-cd7d2d2220e4 + - 8ef5fe0c-5b86-4e4a-b00e-d59a6d9084ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -605,8 +604,8 @@ interactions: code: 200 message: OK - request: - body: '{"definition": {"parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiVXNlckRhdGFGdW5jdGlvbiIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", - "payloadType": "InlineBase64"}, {"path": "definition.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vdXNlckRhdGFGdW5jdGlvbi9kZWZpbml0aW9uLzEuMS4wL3NjaGVtYS5qc29uIiwKICAgICJydW50aW1lIjogIlBZVEhPTiIsCiAgICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwKICAgICJmdW5jdGlvbnMiOiBbXSwKICAgICJsaWJyYXJpZXMiOiB7CiAgICAgICAgInB1YmxpYyI6IFtdLAogICAgICAgICJwcml2YXRlIjogW10KICAgIH0KfQ==", + body: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2l0ZW0vdXNlckRhdGFGdW5jdGlvbi9kZWZpbml0aW9uLzEuMS4wL3NjaGVtYS5qc29uIiwKICAgICJydW50aW1lIjogIlBZVEhPTiIsCiAgICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwKICAgICJmdW5jdGlvbnMiOiBbXSwKICAgICJsaWJyYXJpZXMiOiB7CiAgICAgICAgInB1YmxpYyI6IFtdLAogICAgICAgICJwcml2YXRlIjogW10KICAgIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiVXNlckRhdGFGdW5jdGlvbiIsCiAgICAgICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIKICAgIH0sCiAgICAiY29uZmlnIjogewogICAgICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAgICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -616,13 +615,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1039' + - '983' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/c70102e5-0640-4c9b-8518-1f7a723cead6/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/447f7714-ffda-4675-b5d0-e4d10f40b78a/updateDefinition response: body: string: 'null' @@ -638,13 +637,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:29 GMT + - Tue, 02 Jun 2026 13:00:48 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d61f944-4d56-4fb0-848b-6d007b605450 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/73c9b750-cb08-4b5b-89ec-866d3d6dfc0c Pragma: - no-cache RequestId: - - af345af8-4a26-4106-8767-1f508134d4f4 + - b69be133-441c-49ba-85fe-d7162453b433 Retry-After: - '20' Strict-Transport-Security: @@ -658,7 +657,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 6d61f944-4d56-4fb0-848b-6d007b605450 + - 73c9b750-cb08-4b5b-89ec-866d3d6dfc0c status: code: 202 message: Accepted @@ -674,13 +673,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d61f944-4d56-4fb0-848b-6d007b605450 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/73c9b750-cb08-4b5b-89ec-866d3d6dfc0c response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:24:29.8939415", - "lastUpdatedTimeUtc": "2026-04-14T12:24:30.0525331", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T13:00:48.5619065", + "lastUpdatedTimeUtc": "2026-06-02T13:00:48.7419961", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -690,17 +689,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:49 GMT + - Tue, 02 Jun 2026 13:01:09 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d61f944-4d56-4fb0-848b-6d007b605450/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/73c9b750-cb08-4b5b-89ec-866d3d6dfc0c/result Pragma: - no-cache RequestId: - - b3ffa24f-267b-4ebb-b897-0e2b92380f1f + - f6614359-e54d-4eb3-b8e9-a6c28868e0b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -708,7 +707,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 6d61f944-4d56-4fb0-848b-6d007b605450 + - 73c9b750-cb08-4b5b-89ec-866d3d6dfc0c status: code: 200 message: OK @@ -724,14 +723,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d61f944-4d56-4fb0-848b-6d007b605450/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/73c9b750-cb08-4b5b-89ec-866d3d6dfc0c/result response: body: - string: '{"id": "c70102e5-0640-4c9b-8518-1f7a723cead6", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}' + string: '{"id": "447f7714-ffda-4675-b5d0-e4d10f40b78a", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}' headers: Access-Control-Expose-Headers: - RequestId @@ -742,11 +740,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:24:51 GMT + - Tue, 02 Jun 2026 13:01:09 GMT Pragma: - no-cache RequestId: - - bad4082a-b085-4702-8549-ccc9b3f2e448 + - b2b3f386-1fde-44c1-866d-a4c7cc2bff18 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -770,14 +768,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.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": "e612c1cf-5450-4af1-8113-798350c641ba", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "7e598955-2dfe-415b-b4d9-ff0258025428", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -786,15 +785,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2132' + - '3022' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:52 GMT + - Tue, 02 Jun 2026 13:01:10 GMT Pragma: - no-cache RequestId: - - 780eca8d-192f-407e-87d5-4f3a9a29c943 + - ab55dd90-6d7d-4447-8924-5eee641cac69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -820,14 +819,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items response: body: - string: '{"value": [{"id": "c70102e5-0640-4c9b-8518-1f7a723cead6", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "e612c1cf-5450-4af1-8113-798350c641ba"}]}' + string: '{"value": [{"id": "447f7714-ffda-4675-b5d0-e4d10f40b78a", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "7e598955-2dfe-415b-b4d9-ff0258025428"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -836,15 +834,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:24:52 GMT + - Tue, 02 Jun 2026 13:01:11 GMT Pragma: - no-cache RequestId: - - 1a92152d-0db3-4d2e-8573-8d54e856ba0c + - 186d411b-6723-472c-bb02-1ae18b7ff349 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,9 +870,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e612c1cf-5450-4af1-8113-798350c641ba/items/c70102e5-0640-4c9b-8518-1f7a723cead6 + uri: https://api.fabric.microsoft.com/v1/workspaces/7e598955-2dfe-415b-b4d9-ff0258025428/items/447f7714-ffda-4675-b5d0-e4d10f40b78a response: body: string: '' @@ -890,11 +888,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:24:53 GMT + - Tue, 02 Jun 2026 13:01:12 GMT Pragma: - no-cache RequestId: - - 608603ec-0043-469e-90b7-4eb7739cac85 + - df4d9e41-a7a7-49a5-a1c4-a01fdf634a70 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 c7f63e08..430f66e5 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2527' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:58:32 GMT + - Tue, 02 Jun 2026 07:59:40 GMT Pragma: - no-cache RequestId: - - 84b05c3a-0cb6-49e3-8be4-568339bc5a49 + - e823c12a-6a7a-49d5-a266-a712d1bc4e55 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2527' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:58:33 GMT + - Tue, 02 Jun 2026 07:59:41 GMT Pragma: - no-cache RequestId: - - 59876e92-dfbe-4077-8580-1fcf8cded7cc + - c81c0f3e-f590-45b8-a260-1e9b3b686cab 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '467' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:58:39 GMT + - Tue, 02 Jun 2026 07:59:46 GMT Pragma: - no-cache RequestId: - - bb7b065a-2dbe-4420-9500-e0f735e32579 + - 93261e90-43d5-410e-b21d-86266c0f9327 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (get; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "9b5216b6-2d8f-4ef5-bda5-1a358eb0cfd6", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '177' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:58:47 GMT + - Tue, 02 Jun 2026 07:59:57 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/9b5216b6-2d8f-4ef5-bda5-1a358eb0cfd6 + - https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b Pragma: - no-cache RequestId: - - 9cc70174-5ac8-4584-924b-4e19e9f713de + - 9932ca64-ebe4-4fb5-a947-00f6f09f2fbb 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.6.1 (mkdir; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mkdir; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "9b5216b6-2d8f-4ef5-bda5-1a358eb0cfd6", + "My workspace", "description": "", "type": "Personal"}, {"id": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2561' + - '2960' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:58:57 GMT + - Tue, 02 Jun 2026 08:00:37 GMT Pragma: - no-cache RequestId: - - a0c9536d-1e87-4343-8e5b-4ee85bd0221c + - 70e0ae96-2c95-48c5-a1e3-85842038b7fc 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.6.1 (mkdir; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mkdir; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b5216b6-2d8f-4ef5-bda5-1a358eb0cfd6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 10:58:57 GMT + - Tue, 02 Jun 2026 08:00:38 GMT Pragma: - no-cache RequestId: - - fb7e9199-3cf2-4d7d-93ee-907459b38712 + - f95a6a6b-e640-41f7-a983-5c330b9132ea 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.6.1 (mkdir; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mkdir; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/9b5216b6-2d8f-4ef5-bda5-1a358eb0cfd6 + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 10:58:58 GMT + - Tue, 02 Jun 2026 08:00:38 GMT Pragma: - no-cache RequestId: - - f769700b-2bc0-447f-af33-2f15b22abb1c + - 6f6ac5ab-5067-4530-b308-899386b5de30 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[Environment].yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[Environment].yaml index 1e1d2fbb..5d4a28a4 100644 --- a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[Environment].yaml +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[Environment].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2303' + - '2960' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:04 GMT + - Tue, 02 Jun 2026 07:59:59 GMT Pragma: - no-cache RequestId: - - 635b6012-7960-4e9c-a71d-b6b0c799e2f7 + - 2aa698dd-f2bb-4f2d-abad-4cabbf774f0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,16 +62,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/items response: body: - string: '{"value": [{"id": "8ff3aa09-ab5f-4bd0-8dfe-7e76102342f2", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}, - {"id": "49b99e73-f31e-473d-9fe4-085031b70124", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260129083942", "description": "", "workspaceId": - "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -79,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '248' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:05 GMT + - Tue, 02 Jun 2026 08:00:00 GMT Pragma: - no-cache RequestId: - - b62d2f39-fa4f-4fad-b2e8-5322f43be121 + - ae670285-aff2-420c-86c1-369bb51f3941 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -113,16 +110,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/items response: body: - string: '{"value": [{"id": "8ff3aa09-ab5f-4bd0-8dfe-7e76102342f2", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}, - {"id": "49b99e73-f31e-473d-9fe4-085031b70124", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260129083942", "description": "", "workspaceId": - "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -131,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '248' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:05 GMT + - Tue, 02 Jun 2026 08:00:01 GMT Pragma: - no-cache RequestId: - - 9e7912e8-5aaa-4fbe-9349-49bedfecea97 + - 316ccd8f-1ba4-4663-a54b-71fec7496da4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -164,18 +157,16 @@ interactions: - keep-alive Content-Length: - '76' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/environments + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/environments response: body: - string: '{"id": "d570ea08-cb75-418c-aff0-fd71e04246af", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}' + string: '{"id": "44e1c3f0-52b8-4345-953a-3e280967a103", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -184,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:07 GMT + - Tue, 02 Jun 2026 08:00:03 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ec30ce74-24b3-452c-9a7d-86cf60ee5e87 + - 969160ee-4e02-4747-9b28-3fb060e62839 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -220,14 +211,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -236,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2303' + - '2960' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:07 GMT + - Tue, 02 Jun 2026 08:00:05 GMT Pragma: - no-cache RequestId: - - 833b7a75-035b-48c5-8f5b-b0ecac808991 + - 4c42b70b-5b0d-4619-8de8-acb54c193209 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -270,17 +262,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/items response: body: - string: '{"value": [{"id": "8ff3aa09-ab5f-4bd0-8dfe-7e76102342f2", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}, - {"id": "49b99e73-f31e-473d-9fe4-085031b70124", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260129083942", "description": "", "workspaceId": - "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}, {"id": "d570ea08-cb75-418c-aff0-fd71e04246af", - "type": "Environment", "displayName": "fabcli000001", "workspaceId": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}]}' + string: '{"value": [{"id": "44e1c3f0-52b8-4345-953a-3e280967a103", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -289,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '307' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:08 GMT + - Tue, 02 Jun 2026 08:00:06 GMT Pragma: - no-cache RequestId: - - 11b75b6f-fe34-4b73-b32a-ff557f8b4d47 + - b9510951-4666-4305-b41f-22bcf93d0e5e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -323,16 +311,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/environments/d570ea08-cb75-418c-aff0-fd71e04246af + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/environments/44e1c3f0-52b8-4345-953a-3e280967a103 response: body: - string: '{"id": "d570ea08-cb75-418c-aff0-fd71e04246af", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "0cfd9c66-3bf0-4e43-8257-4b76aa86581e", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "5b3442a0-1907-477d-a782-bcf99856270e", "startTime": - "2026-01-29T08:40:07.4541076Z", "endTime": "2026-01-29T08:40:07.4541076Z", + string: '{"id": "44e1c3f0-52b8-4345-953a-3e280967a103", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "c014a315-3037-457f-a3c6-04fb097e8380", + "startTime": "2026-06-02T08:00:04.1412715Z", "endTime": "2026-06-02T08:00:04.1412715Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -343,17 +330,71 @@ interactions: Content-Encoding: - gzip Content-Length: - - '314' + - '304' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:11 GMT + - Tue, 02 Jun 2026 08:00:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 088f3f10-0007-44e6-8003-aa7da54a6eb5 + - 7e946caf-0f00-4453-9450-713f4fef4064 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/items/44e1c3f0-52b8-4345-953a-3e280967a103/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, 02 Jun 2026 08:00:07 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/83b624fe-fdc8-440c-a54b-531c76a7c989 + Pragma: + - no-cache + RequestId: + - 73aab3d8-cd19-47fa-93a1-cc11ed8c4fda + Retry-After: + - '20' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,6 +405,105 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' + x-ms-operation-id: + - 83b624fe-fdc8-440c-a54b-531c76a7c989 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/83b624fe-fdc8-440c-a54b-531c76a7c989 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:00:08.2140465", + "lastUpdatedTimeUtc": "2026-06-02T08:00:08.4503922", "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, 02 Jun 2026 08:00:28 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/83b624fe-fdc8-440c-a54b-531c76a7c989/result + Pragma: + - no-cache + RequestId: + - a6e4dd16-0ada-4a6c-b2ae-f0d1beeac3ea + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 83b624fe-fdc8-440c-a54b-531c76a7c989 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/83b624fe-fdc8-440c-a54b-531c76a7c989/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDEiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 08:00:29 GMT + Pragma: + - no-cache + RequestId: + - d6fdc1b1-92ce-4a2f-b7c1-355a82a7c760 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny status: code: 200 message: OK @@ -379,9 +519,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/items/d570ea08-cb75-418c-aff0-fd71e04246af/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/items/44e1c3f0-52b8-4345-953a-3e280967a103/connections response: body: string: '{"value": []}' @@ -397,11 +537,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:11 GMT + - Tue, 02 Jun 2026 08:00:30 GMT Pragma: - no-cache RequestId: - - 6b03155e-fa5f-46f0-85ce-2dcaa20baf7b + - f665e980-55e5-4144-9fc2-b37b56973f37 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -427,25 +567,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/environments/d570ea08-cb75-418c-aff0-fd71e04246af/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/environments/44e1c3f0-52b8-4345-953a-3e280967a103/libraries response: body: - string: '{"requestId": "b9ddf762-a362-4665-ba76-dee3fe315caa", "errorCode": + string: '{"requestId": "50188920-ecde-41ce-858d-7e85fb4c3aa9", "errorCode": "EnvironmentLibrariesNotFound", "message": "This environment does not have - any published libraries. Please publish libraries."}' + any published libraries. Please publish libraries.", "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId Content-Length: - - '189' + - '209' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:12 GMT + - Tue, 02 Jun 2026 08:00:31 GMT RequestId: - - b9ddf762-a362-4665-ba76-dee3fe315caa + - 50188920-ecde-41ce-858d-7e85fb4c3aa9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -473,25 +613,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/environments/d570ea08-cb75-418c-aff0-fd71e04246af/staging/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/environments/44e1c3f0-52b8-4345-953a-3e280967a103/staging/libraries response: body: - string: '{"requestId": "c3b3e20f-feb3-482d-a5a9-1937a3b6f3e5", "errorCode": + string: '{"requestId": "d67c67ab-bdae-45b4-84a7-50492256fbaf", "errorCode": "EnvironmentLibrariesNotFound", "message": "This environment does not have - any staged libraries. Please upload libraries."}' + any staged libraries. Please upload libraries.", "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId Content-Length: - - '185' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:13 GMT + - Tue, 02 Jun 2026 08:00:32 GMT RequestId: - - c3b3e20f-feb3-482d-a5a9-1937a3b6f3e5 + - d67c67ab-bdae-45b4-84a7-50492256fbaf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +659,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/environments/d570ea08-cb75-418c-aff0-fd71e04246af/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/environments/44e1c3f0-52b8-4345-953a-3e280967a103/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -537,9 +677,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:14 GMT + - Tue, 02 Jun 2026 08:00:33 GMT RequestId: - - c41c58e1-024f-4cce-af84-4525db8d2cdc + - 91bf56b3-b131-45cc-9e97-f8169183aba3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,9 +705,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/environments/d570ea08-cb75-418c-aff0-fd71e04246af/staging/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/environments/44e1c3f0-52b8-4345-953a-3e280967a103/staging/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -583,9 +723,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:14 GMT + - Tue, 02 Jun 2026 08:00:34 GMT RequestId: - - a8088eff-4521-4e2d-81ef-c29349acf975 + - c93c5697-615f-4a1b-9161-9149cf73672a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -611,14 +751,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.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": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -627,15 +768,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2303' + - '2960' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:15 GMT + - Tue, 02 Jun 2026 08:00:35 GMT Pragma: - no-cache RequestId: - - 73918ed6-6f66-44a5-8b82-98054bdd8c10 + - 888eab65-3d9b-48d3-928a-1048d7c5d992 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -661,20 +802,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/items response: body: - string: '{"value": [{"id": "8ff3aa09-ab5f-4bd0-8dfe-7e76102342f2", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}, - {"id": "ef2fc02e-6cb7-4813-b293-f5d5b98c5d9a", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260129083942", "description": "", "workspaceId": - "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}, {"id": "49b99e73-f31e-473d-9fe4-085031b70124", - "type": "Lakehouse", "displayName": "StagingLakehouseForDataflows_20260129083942", - "description": "", "workspaceId": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}, - {"id": "d570ea08-cb75-418c-aff0-fd71e04246af", "type": "Environment", "displayName": - "fabcli000001", "workspaceId": "0cfd9c66-3bf0-4e43-8257-4b76aa86581e"}]}' + string: '{"value": [{"id": "44e1c3f0-52b8-4345-953a-3e280967a103", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "af1d582c-7f71-4ee0-b11f-1e5ddb941a0b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -683,15 +817,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '345' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 08:40:16 GMT + - Tue, 02 Jun 2026 08:00:35 GMT Pragma: - no-cache RequestId: - - f5539df3-bfc0-4d43-94f9-976805cff61d + - e667d753-1b57-4fb5-9cef-e1ea5956b321 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -719,9 +853,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/0cfd9c66-3bf0-4e43-8257-4b76aa86581e/items/d570ea08-cb75-418c-aff0-fd71e04246af + uri: https://api.fabric.microsoft.com/v1/workspaces/af1d582c-7f71-4ee0-b11f-1e5ddb941a0b/items/44e1c3f0-52b8-4345-953a-3e280967a103 response: body: string: '' @@ -737,11 +871,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 08:40:16 GMT + - Tue, 02 Jun 2026 08:00:36 GMT Pragma: - no-cache RequestId: - - 1d362005-2309-4cb4-9aad-297536fe5e03 + - dda3b556-0bdf-4dc6-8088-7b7f69ef393c 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 7d38cd11..60ec0503 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:12:03 GMT + - Tue, 02 Jun 2026 08:21:42 GMT Pragma: - no-cache RequestId: - - 56e911ff-7a54-4349-9f5a-df4f95b77bd4 + - fdd02308-619f-4ea7-8c80-f2476e976a3e 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2490' + - '2925' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:12:04 GMT + - Tue, 02 Jun 2026 08:21:43 GMT Pragma: - no-cache RequestId: - - 2326425b-6142-4f65-9db0-a00dd44a0457 + - c00863ef-4262-4663-b3b5-cd4f04838010 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '467' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:12:08 GMT + - Tue, 02 Jun 2026 08:21:48 GMT Pragma: - no-cache RequestId: - - d996dac1-086d-49f5-9e3d-f5cd78499284 + - a4047d10-f02a-4177-afa9-f71dd20199e9 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.6.1 (None; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (export; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "c96273f8-3544-4caf-8c9f-2459c71c633a", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "7cf9fa7b-b461-4419-b283-299ef515714c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '177' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:12:15 GMT + - Tue, 02 Jun 2026 08:21:56 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c96273f8-3544-4caf-8c9f-2459c71c633a + - https://api.fabric.microsoft.com/v1/workspaces/7cf9fa7b-b461-4419-b283-299ef515714c Pragma: - no-cache RequestId: - - 74357470-b21d-491e-a57c-ba7733542a6b + - 6f47c600-fec4-4e07-94eb-755fdf0e44fe 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.6.1 (mv; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mv; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "c96273f8-3544-4caf-8c9f-2459c71c633a", + "My workspace", "description": "", "type": "Personal"}, {"id": "7cf9fa7b-b461-4419-b283-299ef515714c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2527' + - '2959' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:20:03 GMT + - Tue, 02 Jun 2026 08:24:50 GMT Pragma: - no-cache RequestId: - - bd7b2aa0-5a11-49ed-ab2c-959a3881212c + - 3cd82929-1efc-4dbb-b6c3-22796afdc488 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.6.1 (mv; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mv; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c96273f8-3544-4caf-8c9f-2459c71c633a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/7cf9fa7b-b461-4419-b283-299ef515714c/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 13 May 2026 07:20:04 GMT + - Tue, 02 Jun 2026 08:24:51 GMT Pragma: - no-cache RequestId: - - 228077da-e31d-46f4-b68d-470a6988e233 + - abfe060e-40f5-45dc-84fd-4a62e2b0487e 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.6.1 (mv; Darwin/25.4.0; Python/3.12.13) + - ms-fabric-cli/1.6.1 (mv; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c96273f8-3544-4caf-8c9f-2459c71c633a + uri: https://api.fabric.microsoft.com/v1/workspaces/7cf9fa7b-b461-4419-b283-299ef515714c response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 13 May 2026 07:20:05 GMT + - Tue, 02 Jun 2026 08:24:52 GMT Pragma: - no-cache RequestId: - - ec453163-1911-45be-a731-708071367a12 + - d0e7d1b5-bec2-4b42-bbf5-a1408749c182 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[Environment].yaml b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_success[Environment].yaml new file mode 100644 index 00000000..e5cce54f --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_success[Environment].yaml @@ -0,0 +1,1998 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:21:57 GMT + Pragma: + - no-cache + RequestId: + - cb7c1cb8-aca3-45b3-a37b-707611f9b6f8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:21:58 GMT + Pragma: + - no-cache + RequestId: + - 64b56232-0ca0-4abf-985d-6f80067cda93 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + 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: + - '467' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:03 GMT + Pragma: + - no-cache + RequestId: + - 0edf758b-44a7-42e3-9f36-68ba2c189122 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "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: + - '154' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:10 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5 + Pragma: + - no-cache + RequestId: + - 59149dc7-4538-4cf1-9b5c-2097ddca9db7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "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: + - '2999' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:10 GMT + Pragma: + - no-cache + RequestId: + - db40d02a-56cb-4128-8c8a-4b20ad08deff + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "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: + - '2999' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:10 GMT + Pragma: + - no-cache + RequestId: + - 755b71be-a061-4b95-8c1d-24ddcd7a7547 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + 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: + - '466' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:14 GMT + Pragma: + - no-cache + RequestId: + - 68512fa1-436a-4e3f-882f-93e5dd6fa729 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '155' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:21 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653 + Pragma: + - no-cache + RequestId: + - b4a513a6-eb14-4fef-8f1d-b6b4ff451f68 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '3031' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:22 GMT + Pragma: + - no-cache + RequestId: + - 9daac4bc-cf2f-4300-9009-e3e23a409e10 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/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, 02 Jun 2026 08:22:22 GMT + Pragma: + - no-cache + RequestId: + - 0dfef008-873f-4342-a430-2e5a9b1da683 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/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, 02 Jun 2026 08:22:23 GMT + Pragma: + - no-cache + RequestId: + - 6b82042b-0e80-4d41-893f-55bb07da4700 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000003", "type": "Environment", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/environments + response: + body: + string: '{"id": "e9c54aca-cd4a-4e0e-818d-d9cecbb94a67", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "64c61892-7003-40ee-9eda-bd551d4539e5"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:26 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 608db767-85f5-4018-aa14-89eedd923cea + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '3031' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:26 GMT + Pragma: + - no-cache + RequestId: + - 79628fdd-df2f-4f5b-a07f-4da7127bcf6e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/items + response: + body: + string: '{"value": [{"id": "e9c54aca-cd4a-4e0e-818d-d9cecbb94a67", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "64c61892-7003-40ee-9eda-bd551d4539e5"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:28 GMT + Pragma: + - no-cache + RequestId: + - 98b6701a-ebbd-4b29-a22a-ccbc652a59a6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '3031' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:29 GMT + Pragma: + - no-cache + RequestId: + - fdc6de30-4f87-4557-8c5f-447dce4cfa26 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653/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, 02 Jun 2026 08:22:30 GMT + Pragma: + - no-cache + RequestId: + - 9c5d7d23-211a-43d6-90a2-4f713b84a0df + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653/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, 02 Jun 2026 08:22:30 GMT + Pragma: + - no-cache + RequestId: + - 15f9d648-bc51-4403-8bdd-e7562f5a2c31 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653/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, 02 Jun 2026 08:22:31 GMT + Pragma: + - no-cache + RequestId: + - bcaa332e-c653-4c85-bf9a-013ab2033c4b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/items/e9c54aca-cd4a-4e0e-818d-d9cecbb94a67 + response: + body: + string: '{"id": "e9c54aca-cd4a-4e0e-818d-d9cecbb94a67", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "64c61892-7003-40ee-9eda-bd551d4539e5"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:22:32 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 4560b3de-43c7-4352-8d19-2dee26c5bd81 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/items/e9c54aca-cd4a-4e0e-818d-d9cecbb94a67/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, 02 Jun 2026 08:22:33 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a433896e-68d6-4c9c-a7a2-52ec36e39f52 + Pragma: + - no-cache + RequestId: + - af20d1a9-874d-47d0-aada-69d1491262d6 + 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: + - a433896e-68d6-4c9c-a7a2-52ec36e39f52 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a433896e-68d6-4c9c-a7a2-52ec36e39f52 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:22:33.4667481", + "lastUpdatedTimeUtc": "2026-06-02T08:22:33.8090709", "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, 02 Jun 2026 08:22:53 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a433896e-68d6-4c9c-a7a2-52ec36e39f52/result + Pragma: + - no-cache + RequestId: + - 3d58ac94-a0de-44bf-bf1f-e664dfcf434d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - a433896e-68d6-4c9c-a7a2-52ec36e39f52 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a433896e-68d6-4c9c-a7a2-52ec36e39f52/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 08:22:55 GMT + Pragma: + - no-cache + RequestId: + - a42b85a4-c4e3-4f7f-812b-4d4022d97c14 + 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": "Environment", "displayName": "fabcli000003", "definition": {"parts": + [{"path": "Setting/Sparkcompute.yml", "payload": "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '968' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653/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, 02 Jun 2026 08:22:56 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/03dd772a-19b0-4e97-960e-f347c315e6f0 + Pragma: + - no-cache + RequestId: + - 409b0436-b215-40df-8900-433be559ac32 + 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: + - 03dd772a-19b0-4e97-960e-f347c315e6f0 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/03dd772a-19b0-4e97-960e-f347c315e6f0 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:22:56.2957043", + "lastUpdatedTimeUtc": "2026-06-02T08:22:59.3767327", "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, 02 Jun 2026 08:23:17 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/03dd772a-19b0-4e97-960e-f347c315e6f0/result + Pragma: + - no-cache + RequestId: + - faeb4e2a-66d8-43cd-82d3-555d7165b7e4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 03dd772a-19b0-4e97-960e-f347c315e6f0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/03dd772a-19b0-4e97-960e-f347c315e6f0/result + response: + body: + string: '{"id": "2c8a09be-329e-48c4-a3ae-abe1f9f5d630", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "9d0bfdab-ac2c-475b-845b-2b845f955653"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 02 Jun 2026 08:23:18 GMT + Pragma: + - no-cache + RequestId: + - b1ad953e-b362-4869-9c85-b3a58138afbc + 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-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/items/e9c54aca-cd4a-4e0e-818d-d9cecbb94a67 + 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, 02 Jun 2026 08:23:18 GMT + Pragma: + - no-cache + RequestId: + - c0ad0d78-c6b8-4c8b-abf8-568ab8015ffc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '3031' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:20 GMT + Pragma: + - no-cache + RequestId: + - 9efeab0c-6891-46de-adf1-4a0fc563c5cf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/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, 02 Jun 2026 08:23:20 GMT + Pragma: + - no-cache + RequestId: + - 913f44fa-e352-4c2d-ae28-0d5352cde124 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '3031' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:21 GMT + Pragma: + - no-cache + RequestId: + - 3b7f842e-e2ea-462d-9274-02e87b55d1ab + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653/items + response: + body: + string: '{"value": [{"id": "2c8a09be-329e-48c4-a3ae-abe1f9f5d630", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "9d0bfdab-ac2c-475b-845b-2b845f955653"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:22 GMT + Pragma: + - no-cache + RequestId: + - d1885c17-e831-4c8f-b268-de4f0cf72b30 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '3031' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:22 GMT + Pragma: + - no-cache + RequestId: + - 09ececa5-5046-4e70-8264-d364db55e40e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653/items + response: + body: + string: '{"value": [{"id": "2c8a09be-329e-48c4-a3ae-abe1f9f5d630", "type": "Environment", + "displayName": "fabcli000003", "description": "", "workspaceId": "9d0bfdab-ac2c-475b-845b-2b845f955653"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:24 GMT + Pragma: + - no-cache + RequestId: + - 648428c0-cc2d-4b47-98c7-e7d3de43d06e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653/items/2c8a09be-329e-48c4-a3ae-abe1f9f5d630 + 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, 02 Jun 2026 08:23:24 GMT + Pragma: + - no-cache + RequestId: + - 50f7fa71-21e4-4a02-9993-b0c904cfef66 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "64c61892-7003-40ee-9eda-bd551d4539e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '3031' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:26 GMT + Pragma: + - no-cache + RequestId: + - e58cc8fc-420a-44a9-a9ab-6aec0c25912e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5/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, 02 Jun 2026 08:23:26 GMT + Pragma: + - no-cache + RequestId: + - e255c06c-9778-4717-a560-c7e2ba54b82b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/64c61892-7003-40ee-9eda-bd551d4539e5 + 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, 02 Jun 2026 08:23:27 GMT + Pragma: + - no-cache + RequestId: + - 51e9c06a-c2d5-4c30-928f-d1d4b1198cbd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d0bfdab-ac2c-475b-845b-2b845f955653", "displayName": "fabcli000002", + "description": "", "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: + - '2994' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:28 GMT + Pragma: + - no-cache + RequestId: + - ca7ae920-c577-45ac-8031-d4d7f44319ed + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653/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, 02 Jun 2026 08:23:29 GMT + Pragma: + - no-cache + RequestId: + - 02c2df6e-c0ed-49ba-ade3-473813aa5aec + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/9d0bfdab-ac2c-475b-845b-2b845f955653 + 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, 02 Jun 2026 08:23:30 GMT + Pragma: + - no-cache + RequestId: + - ca0d3da5-81d9-4176-836c-dfb1f55f39a6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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_within_workspace_rename_success[Environment].yaml b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_within_workspace_rename_success[Environment].yaml new file mode 100644 index 00000000..3839a504 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_within_workspace_rename_success[Environment].yaml @@ -0,0 +1,1526 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:31 GMT + Pragma: + - no-cache + RequestId: + - 45f77491-59e4-4fff-8c22-450d05cf35fa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "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: + - '2959' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:31 GMT + Pragma: + - no-cache + RequestId: + - 0e7b9545-bbc8-4384-a321-9905211eac38 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + 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: + - '467' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:37 GMT + Pragma: + - no-cache + RequestId: + - 71ad459c-8f48-4ff2-964e-a7f26f275f21 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "6b6be6b4-25b1-467f-8a24-5473bd043e11", "displayName": "fabcli000001", + "description": "", "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: + - '156' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:45 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11 + Pragma: + - no-cache + RequestId: + - 3dba881d-2ac3-4ef7-b521-0d204819ec40 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6b6be6b4-25b1-467f-8a24-5473bd043e11", "displayName": "fabcli000001", + "description": "", "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: + - '2998' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:45 GMT + Pragma: + - no-cache + RequestId: + - 747a621a-6e7a-4393-bfd9-7616bf45df1b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/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, 02 Jun 2026 08:23:46 GMT + Pragma: + - no-cache + RequestId: + - 1c07b9e8-45a3-4a36-9106-f2b594eb86dd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/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, 02 Jun 2026 08:23:47 GMT + Pragma: + - no-cache + RequestId: + - 451ace30-cc0e-4296-bf7d-c233e2cc5656 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"displayName": "fabcli000002", "type": "Environment", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/environments + response: + body: + string: '{"id": "825e6135-abcf-4dd0-a3e0-a3052f61bf47", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:49 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - cee02b7c-cce2-41ec-95a0-537707619f1c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6b6be6b4-25b1-467f-8a24-5473bd043e11", "displayName": "fabcli000001", + "description": "", "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: + - '2998' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:51 GMT + Pragma: + - no-cache + RequestId: + - 58bfae53-1fff-4698-9101-c0eed11dc232 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items + response: + body: + string: '{"value": [{"id": "825e6135-abcf-4dd0-a3e0-a3052f61bf47", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:51 GMT + Pragma: + - no-cache + RequestId: + - 40dc79e5-cac8-4930-a167-478c7c7d1ffc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6b6be6b4-25b1-467f-8a24-5473bd043e11", "displayName": "fabcli000001", + "description": "", "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: + - '2998' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:53 GMT + Pragma: + - no-cache + RequestId: + - d89c4417-00a4-4faa-890b-93b1825305ad + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items + response: + body: + string: '{"value": [{"id": "825e6135-abcf-4dd0-a3e0-a3052f61bf47", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:53 GMT + Pragma: + - no-cache + RequestId: + - 49e280c2-9136-4bf4-badb-2701308e5c39 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items + response: + body: + string: '{"value": [{"id": "825e6135-abcf-4dd0-a3e0-a3052f61bf47", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:55 GMT + Pragma: + - no-cache + RequestId: + - 3ecc2ab2-a6b6-4968-b1cc-5ecbb9defdcf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items + response: + body: + string: '{"value": [{"id": "825e6135-abcf-4dd0-a3e0-a3052f61bf47", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:55 GMT + Pragma: + - no-cache + RequestId: + - a04f15e1-3910-49fd-b513-e45aa5adcd62 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items/825e6135-abcf-4dd0-a3e0-a3052f61bf47 + response: + body: + string: '{"id": "825e6135-abcf-4dd0-a3e0-a3052f61bf47", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:23:56 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 0243102d-3741-4db6-a6cd-3598201104d5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items/825e6135-abcf-4dd0-a3e0-a3052f61bf47/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, 02 Jun 2026 08:23:56 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9fac9233-0faf-4e47-854d-f7962aa031e3 + Pragma: + - no-cache + RequestId: + - 8d30041b-df86-4aa3-b183-7baf94ab76ef + 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: + - 9fac9233-0faf-4e47-854d-f7962aa031e3 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9fac9233-0faf-4e47-854d-f7962aa031e3 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:23:57.7008418", + "lastUpdatedTimeUtc": "2026-06-02T08:23:58.3827913", "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, 02 Jun 2026 08:24:17 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9fac9233-0faf-4e47-854d-f7962aa031e3/result + Pragma: + - no-cache + RequestId: + - 15d3b5c6-5178-4791-9c4e-c937132aa16e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 9fac9233-0faf-4e47-854d-f7962aa031e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9fac9233-0faf-4e47-854d-f7962aa031e3/result + response: + body: + string: '{"definition": {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": + "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "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, 02 Jun 2026 08:24:19 GMT + Pragma: + - no-cache + RequestId: + - 983d9330-6056-41f0-acc4-600735300302 + 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": "Environment", "displayName": "fabcli000002 Renamed", "definition": + {"parts": [{"path": "Setting/Sparkcompute.yml", "payload": "ZW5hYmxlX25hdGl2ZV9leGVjdXRpb25fZW5naW5lOiBmYWxzZQ0KZHJpdmVyX2NvcmVzOiA4DQpkcml2ZXJfbWVtb3J5OiA1NmcNCmV4ZWN1dG9yX2NvcmVzOiA4DQpleGVjdXRvcl9tZW1vcnk6IDU2Zw0KZHluYW1pY19leGVjdXRvcl9hbGxvY2F0aW9uOg0KICBlbmFibGVkOiB0cnVlDQogIG1pbl9leGVjdXRvcnM6IDENCiAgbWF4X2V4ZWN1dG9yczogOQ0KcnVudGltZV92ZXJzaW9uOiAxLjMNCg==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkVudmlyb25tZW50IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '976' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/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, 02 Jun 2026 08:24:20 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b5353e8-0a11-49de-a76e-b95f3b265d39 + Pragma: + - no-cache + RequestId: + - 88841a43-459a-4ec7-a1ff-561baefba760 + 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: + - 9b5353e8-0a11-49de-a76e-b95f3b265d39 + 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.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b5353e8-0a11-49de-a76e-b95f3b265d39 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-06-02T08:24:20.617759", + "lastUpdatedTimeUtc": "2026-06-02T08:24:21.8411907", "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, 02 Jun 2026 08:24:41 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b5353e8-0a11-49de-a76e-b95f3b265d39/result + Pragma: + - no-cache + RequestId: + - 26821bf2-51b5-43c7-8e60-3e533446f88e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 9b5353e8-0a11-49de-a76e-b95f3b265d39 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b5353e8-0a11-49de-a76e-b95f3b265d39/result + response: + body: + string: '{"id": "62bb53a1-fe89-4f41-9ddc-3f26db137503", "type": "Environment", + "displayName": "fabcli000002 Renamed", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 02 Jun 2026 08:24:41 GMT + Pragma: + - no-cache + RequestId: + - 90158593-339b-4c49-b333-3dabfa7ac0c5 + 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-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items/825e6135-abcf-4dd0-a3e0-a3052f61bf47 + 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, 02 Jun 2026 08:24:43 GMT + Pragma: + - no-cache + RequestId: + - e59d0257-ad31-417e-8566-c5e713892f20 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6b6be6b4-25b1-467f-8a24-5473bd043e11", "displayName": "fabcli000001", + "description": "", "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: + - '2998' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:24:43 GMT + Pragma: + - no-cache + RequestId: + - e1c5d1b5-0a88-4e6f-a323-fb28ad8c4f8b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items + response: + body: + string: '{"value": [{"id": "62bb53a1-fe89-4f41-9ddc-3f26db137503", "type": "Environment", + "displayName": "fabcli000002 Renamed", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '177' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:24:44 GMT + Pragma: + - no-cache + RequestId: + - 40c51c27-5740-4e36-b7b1-12df07cf339a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6b6be6b4-25b1-467f-8a24-5473bd043e11", "displayName": "fabcli000001", + "description": "", "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: + - '2998' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:24:45 GMT + Pragma: + - no-cache + RequestId: + - 826eeef8-b77c-4aa7-937b-b421aca1465a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items + response: + body: + string: '{"value": [{"id": "62bb53a1-fe89-4f41-9ddc-3f26db137503", "type": "Environment", + "displayName": "fabcli000002 Renamed", "description": "", "workspaceId": "6b6be6b4-25b1-467f-8a24-5473bd043e11"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '177' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:24:46 GMT + Pragma: + - no-cache + RequestId: + - c9844b9d-f5c3-4de9-b25f-c8561255df84 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/items/62bb53a1-fe89-4f41-9ddc-3f26db137503 + 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, 02 Jun 2026 08:24:47 GMT + Pragma: + - no-cache + RequestId: + - 510e0848-945d-4a75-8e08-4c09aec09981 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.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": "7cf9fa7b-b461-4419-b283-299ef515714c", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6b6be6b4-25b1-467f-8a24-5473bd043e11", "displayName": "fabcli000001", + "description": "", "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: + - '2998' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 02 Jun 2026 08:24:47 GMT + Pragma: + - no-cache + RequestId: + - 886d64f6-291d-4233-8aef-e3d7b94cc4de + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11/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, 02 Jun 2026 08:24:48 GMT + Pragma: + - no-cache + RequestId: + - 02d6b8b4-7c8b-4f30-b850-6b7b669e8a39 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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.6.1 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/6b6be6b4-25b1-467f-8a24-5473bd043e11 + 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, 02 Jun 2026 08:24:49 GMT + Pragma: + - no-cache + RequestId: + - c834f367-d072-482a-be86-306202239952 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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/test_export.py b/tests/test_commands/test_export.py index 4d17b639..39f5ca29 100644 --- a/tests/test_commands/test_export.py +++ b/tests/test_commands/test_export.py @@ -96,6 +96,41 @@ def test_export_item_home_directory_path_success( mock_print_done.assert_called_once() mock_print_warning.assert_called_once() + def test_export_environment_item_success( + self, + item_factory, + cli_executor, + mock_print_done, + tmp_path, + ): + """Test Environment export with nested Setting/Sparkcompute.yml structure.""" + # Setup + item = item_factory(ItemType.ENVIRONMENT) + + # Reset mock + mock_print_done.reset_mock() + + # Execute command + cli_executor.exec_command( + f"export {item.full_path} --output {str(tmp_path)} --force" + ) + + # Assert + export_path = tmp_path / f"{item.display_name}.Environment" + assert export_path.is_dir() + + # Environment exports to: .platform + Setting/Sparkcompute.yml + platform_file = export_path / ".platform" + assert platform_file.is_file(), "Expected .platform file at root" + + setting_dir = export_path / "Setting" + assert setting_dir.is_dir(), "Expected Setting/ directory" + + sparkcompute_file = setting_dir / "Sparkcompute.yml" + assert sparkcompute_file.is_file(), "Expected Setting/Sparkcompute.yml" + + mock_print_done.assert_called_once() + @export_item_types_parameters def test_export_item_invalid_output_path_failure( self, item_factory, cli_executor, mock_print_done, assert_fabric_cli_error, item_type